update dependencies (#6267)
Signed-off-by: hongming <coder.scala@gmail.com>
This commit is contained in:
@@ -18,7 +18,7 @@ limitations under the License.
|
||||
|
||||
package v1beta1
|
||||
|
||||
// CustomResourceColumnDefinitionApplyConfiguration represents an declarative configuration of the CustomResourceColumnDefinition type for use
|
||||
// CustomResourceColumnDefinitionApplyConfiguration represents a declarative configuration of the CustomResourceColumnDefinition type for use
|
||||
// with apply.
|
||||
type CustomResourceColumnDefinitionApplyConfiguration struct {
|
||||
Name *string `json:"name,omitempty"`
|
||||
@@ -29,7 +29,7 @@ type CustomResourceColumnDefinitionApplyConfiguration struct {
|
||||
JSONPath *string `json:"JSONPath,omitempty"`
|
||||
}
|
||||
|
||||
// CustomResourceColumnDefinitionApplyConfiguration constructs an declarative configuration of the CustomResourceColumnDefinition type for use with
|
||||
// CustomResourceColumnDefinitionApplyConfiguration constructs a declarative configuration of the CustomResourceColumnDefinition type for use with
|
||||
// apply.
|
||||
func CustomResourceColumnDefinition() *CustomResourceColumnDefinitionApplyConfiguration {
|
||||
return &CustomResourceColumnDefinitionApplyConfiguration{}
|
||||
|
||||
@@ -22,7 +22,7 @@ import (
|
||||
v1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
|
||||
)
|
||||
|
||||
// CustomResourceConversionApplyConfiguration represents an declarative configuration of the CustomResourceConversion type for use
|
||||
// CustomResourceConversionApplyConfiguration represents a declarative configuration of the CustomResourceConversion type for use
|
||||
// with apply.
|
||||
type CustomResourceConversionApplyConfiguration struct {
|
||||
Strategy *v1beta1.ConversionStrategyType `json:"strategy,omitempty"`
|
||||
@@ -30,7 +30,7 @@ type CustomResourceConversionApplyConfiguration struct {
|
||||
ConversionReviewVersions []string `json:"conversionReviewVersions,omitempty"`
|
||||
}
|
||||
|
||||
// CustomResourceConversionApplyConfiguration constructs an declarative configuration of the CustomResourceConversion type for use with
|
||||
// CustomResourceConversionApplyConfiguration constructs a declarative configuration of the CustomResourceConversion type for use with
|
||||
// apply.
|
||||
func CustomResourceConversion() *CustomResourceConversionApplyConfiguration {
|
||||
return &CustomResourceConversionApplyConfiguration{}
|
||||
|
||||
@@ -24,7 +24,7 @@ import (
|
||||
v1 "k8s.io/client-go/applyconfigurations/meta/v1"
|
||||
)
|
||||
|
||||
// CustomResourceDefinitionApplyConfiguration represents an declarative configuration of the CustomResourceDefinition type for use
|
||||
// CustomResourceDefinitionApplyConfiguration represents a declarative configuration of the CustomResourceDefinition type for use
|
||||
// with apply.
|
||||
type CustomResourceDefinitionApplyConfiguration struct {
|
||||
v1.TypeMetaApplyConfiguration `json:",inline"`
|
||||
@@ -33,7 +33,7 @@ type CustomResourceDefinitionApplyConfiguration struct {
|
||||
Status *CustomResourceDefinitionStatusApplyConfiguration `json:"status,omitempty"`
|
||||
}
|
||||
|
||||
// CustomResourceDefinition constructs an declarative configuration of the CustomResourceDefinition type for use with
|
||||
// CustomResourceDefinition constructs a declarative configuration of the CustomResourceDefinition type for use with
|
||||
// apply.
|
||||
func CustomResourceDefinition(name string) *CustomResourceDefinitionApplyConfiguration {
|
||||
b := &CustomResourceDefinitionApplyConfiguration{}
|
||||
@@ -216,3 +216,9 @@ func (b *CustomResourceDefinitionApplyConfiguration) WithStatus(value *CustomRes
|
||||
b.Status = value
|
||||
return b
|
||||
}
|
||||
|
||||
// GetName retrieves the value of the Name field in the declarative configuration.
|
||||
func (b *CustomResourceDefinitionApplyConfiguration) GetName() *string {
|
||||
b.ensureObjectMetaApplyConfigurationExists()
|
||||
return b.Name
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ import (
|
||||
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||
)
|
||||
|
||||
// CustomResourceDefinitionConditionApplyConfiguration represents an declarative configuration of the CustomResourceDefinitionCondition type for use
|
||||
// CustomResourceDefinitionConditionApplyConfiguration represents a declarative configuration of the CustomResourceDefinitionCondition type for use
|
||||
// with apply.
|
||||
type CustomResourceDefinitionConditionApplyConfiguration struct {
|
||||
Type *v1beta1.CustomResourceDefinitionConditionType `json:"type,omitempty"`
|
||||
@@ -33,7 +33,7 @@ type CustomResourceDefinitionConditionApplyConfiguration struct {
|
||||
Message *string `json:"message,omitempty"`
|
||||
}
|
||||
|
||||
// CustomResourceDefinitionConditionApplyConfiguration constructs an declarative configuration of the CustomResourceDefinitionCondition type for use with
|
||||
// CustomResourceDefinitionConditionApplyConfiguration constructs a declarative configuration of the CustomResourceDefinitionCondition type for use with
|
||||
// apply.
|
||||
func CustomResourceDefinitionCondition() *CustomResourceDefinitionConditionApplyConfiguration {
|
||||
return &CustomResourceDefinitionConditionApplyConfiguration{}
|
||||
|
||||
@@ -18,7 +18,7 @@ limitations under the License.
|
||||
|
||||
package v1beta1
|
||||
|
||||
// CustomResourceDefinitionNamesApplyConfiguration represents an declarative configuration of the CustomResourceDefinitionNames type for use
|
||||
// CustomResourceDefinitionNamesApplyConfiguration represents a declarative configuration of the CustomResourceDefinitionNames type for use
|
||||
// with apply.
|
||||
type CustomResourceDefinitionNamesApplyConfiguration struct {
|
||||
Plural *string `json:"plural,omitempty"`
|
||||
@@ -29,7 +29,7 @@ type CustomResourceDefinitionNamesApplyConfiguration struct {
|
||||
Categories []string `json:"categories,omitempty"`
|
||||
}
|
||||
|
||||
// CustomResourceDefinitionNamesApplyConfiguration constructs an declarative configuration of the CustomResourceDefinitionNames type for use with
|
||||
// CustomResourceDefinitionNamesApplyConfiguration constructs a declarative configuration of the CustomResourceDefinitionNames type for use with
|
||||
// apply.
|
||||
func CustomResourceDefinitionNames() *CustomResourceDefinitionNamesApplyConfiguration {
|
||||
return &CustomResourceDefinitionNamesApplyConfiguration{}
|
||||
|
||||
@@ -22,7 +22,7 @@ import (
|
||||
apiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
|
||||
)
|
||||
|
||||
// CustomResourceDefinitionSpecApplyConfiguration represents an declarative configuration of the CustomResourceDefinitionSpec type for use
|
||||
// CustomResourceDefinitionSpecApplyConfiguration represents a declarative configuration of the CustomResourceDefinitionSpec type for use
|
||||
// with apply.
|
||||
type CustomResourceDefinitionSpecApplyConfiguration struct {
|
||||
Group *string `json:"group,omitempty"`
|
||||
@@ -33,11 +33,12 @@ type CustomResourceDefinitionSpecApplyConfiguration struct {
|
||||
Subresources *CustomResourceSubresourcesApplyConfiguration `json:"subresources,omitempty"`
|
||||
Versions []CustomResourceDefinitionVersionApplyConfiguration `json:"versions,omitempty"`
|
||||
AdditionalPrinterColumns []CustomResourceColumnDefinitionApplyConfiguration `json:"additionalPrinterColumns,omitempty"`
|
||||
SelectableFields []SelectableFieldApplyConfiguration `json:"selectableFields,omitempty"`
|
||||
Conversion *CustomResourceConversionApplyConfiguration `json:"conversion,omitempty"`
|
||||
PreserveUnknownFields *bool `json:"preserveUnknownFields,omitempty"`
|
||||
}
|
||||
|
||||
// CustomResourceDefinitionSpecApplyConfiguration constructs an declarative configuration of the CustomResourceDefinitionSpec type for use with
|
||||
// CustomResourceDefinitionSpecApplyConfiguration constructs a declarative configuration of the CustomResourceDefinitionSpec type for use with
|
||||
// apply.
|
||||
func CustomResourceDefinitionSpec() *CustomResourceDefinitionSpecApplyConfiguration {
|
||||
return &CustomResourceDefinitionSpecApplyConfiguration{}
|
||||
@@ -117,6 +118,19 @@ func (b *CustomResourceDefinitionSpecApplyConfiguration) WithAdditionalPrinterCo
|
||||
return b
|
||||
}
|
||||
|
||||
// WithSelectableFields adds the given value to the SelectableFields 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 SelectableFields field.
|
||||
func (b *CustomResourceDefinitionSpecApplyConfiguration) WithSelectableFields(values ...*SelectableFieldApplyConfiguration) *CustomResourceDefinitionSpecApplyConfiguration {
|
||||
for i := range values {
|
||||
if values[i] == nil {
|
||||
panic("nil value passed to WithSelectableFields")
|
||||
}
|
||||
b.SelectableFields = append(b.SelectableFields, *values[i])
|
||||
}
|
||||
return b
|
||||
}
|
||||
|
||||
// WithConversion sets the Conversion 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 Conversion field is set to the value of the last call.
|
||||
|
||||
@@ -18,7 +18,7 @@ limitations under the License.
|
||||
|
||||
package v1beta1
|
||||
|
||||
// CustomResourceDefinitionStatusApplyConfiguration represents an declarative configuration of the CustomResourceDefinitionStatus type for use
|
||||
// CustomResourceDefinitionStatusApplyConfiguration represents a declarative configuration of the CustomResourceDefinitionStatus type for use
|
||||
// with apply.
|
||||
type CustomResourceDefinitionStatusApplyConfiguration struct {
|
||||
Conditions []CustomResourceDefinitionConditionApplyConfiguration `json:"conditions,omitempty"`
|
||||
@@ -26,7 +26,7 @@ type CustomResourceDefinitionStatusApplyConfiguration struct {
|
||||
StoredVersions []string `json:"storedVersions,omitempty"`
|
||||
}
|
||||
|
||||
// CustomResourceDefinitionStatusApplyConfiguration constructs an declarative configuration of the CustomResourceDefinitionStatus type for use with
|
||||
// CustomResourceDefinitionStatusApplyConfiguration constructs a declarative configuration of the CustomResourceDefinitionStatus type for use with
|
||||
// apply.
|
||||
func CustomResourceDefinitionStatus() *CustomResourceDefinitionStatusApplyConfiguration {
|
||||
return &CustomResourceDefinitionStatusApplyConfiguration{}
|
||||
|
||||
@@ -18,7 +18,7 @@ limitations under the License.
|
||||
|
||||
package v1beta1
|
||||
|
||||
// CustomResourceDefinitionVersionApplyConfiguration represents an declarative configuration of the CustomResourceDefinitionVersion type for use
|
||||
// CustomResourceDefinitionVersionApplyConfiguration represents a declarative configuration of the CustomResourceDefinitionVersion type for use
|
||||
// with apply.
|
||||
type CustomResourceDefinitionVersionApplyConfiguration struct {
|
||||
Name *string `json:"name,omitempty"`
|
||||
@@ -29,9 +29,10 @@ type CustomResourceDefinitionVersionApplyConfiguration struct {
|
||||
Schema *CustomResourceValidationApplyConfiguration `json:"schema,omitempty"`
|
||||
Subresources *CustomResourceSubresourcesApplyConfiguration `json:"subresources,omitempty"`
|
||||
AdditionalPrinterColumns []CustomResourceColumnDefinitionApplyConfiguration `json:"additionalPrinterColumns,omitempty"`
|
||||
SelectableFields []SelectableFieldApplyConfiguration `json:"selectableFields,omitempty"`
|
||||
}
|
||||
|
||||
// CustomResourceDefinitionVersionApplyConfiguration constructs an declarative configuration of the CustomResourceDefinitionVersion type for use with
|
||||
// CustomResourceDefinitionVersionApplyConfiguration constructs a declarative configuration of the CustomResourceDefinitionVersion type for use with
|
||||
// apply.
|
||||
func CustomResourceDefinitionVersion() *CustomResourceDefinitionVersionApplyConfiguration {
|
||||
return &CustomResourceDefinitionVersionApplyConfiguration{}
|
||||
@@ -105,3 +106,16 @@ func (b *CustomResourceDefinitionVersionApplyConfiguration) WithAdditionalPrinte
|
||||
}
|
||||
return b
|
||||
}
|
||||
|
||||
// WithSelectableFields adds the given value to the SelectableFields 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 SelectableFields field.
|
||||
func (b *CustomResourceDefinitionVersionApplyConfiguration) WithSelectableFields(values ...*SelectableFieldApplyConfiguration) *CustomResourceDefinitionVersionApplyConfiguration {
|
||||
for i := range values {
|
||||
if values[i] == nil {
|
||||
panic("nil value passed to WithSelectableFields")
|
||||
}
|
||||
b.SelectableFields = append(b.SelectableFields, *values[i])
|
||||
}
|
||||
return b
|
||||
}
|
||||
|
||||
@@ -22,14 +22,14 @@ import (
|
||||
v1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
|
||||
)
|
||||
|
||||
// CustomResourceSubresourcesApplyConfiguration represents an declarative configuration of the CustomResourceSubresources type for use
|
||||
// CustomResourceSubresourcesApplyConfiguration represents a declarative configuration of the CustomResourceSubresources type for use
|
||||
// with apply.
|
||||
type CustomResourceSubresourcesApplyConfiguration struct {
|
||||
Status *v1beta1.CustomResourceSubresourceStatus `json:"status,omitempty"`
|
||||
Scale *CustomResourceSubresourceScaleApplyConfiguration `json:"scale,omitempty"`
|
||||
}
|
||||
|
||||
// CustomResourceSubresourcesApplyConfiguration constructs an declarative configuration of the CustomResourceSubresources type for use with
|
||||
// CustomResourceSubresourcesApplyConfiguration constructs a declarative configuration of the CustomResourceSubresources type for use with
|
||||
// apply.
|
||||
func CustomResourceSubresources() *CustomResourceSubresourcesApplyConfiguration {
|
||||
return &CustomResourceSubresourcesApplyConfiguration{}
|
||||
|
||||
@@ -18,7 +18,7 @@ limitations under the License.
|
||||
|
||||
package v1beta1
|
||||
|
||||
// CustomResourceSubresourceScaleApplyConfiguration represents an declarative configuration of the CustomResourceSubresourceScale type for use
|
||||
// CustomResourceSubresourceScaleApplyConfiguration represents a declarative configuration of the CustomResourceSubresourceScale type for use
|
||||
// with apply.
|
||||
type CustomResourceSubresourceScaleApplyConfiguration struct {
|
||||
SpecReplicasPath *string `json:"specReplicasPath,omitempty"`
|
||||
@@ -26,7 +26,7 @@ type CustomResourceSubresourceScaleApplyConfiguration struct {
|
||||
LabelSelectorPath *string `json:"labelSelectorPath,omitempty"`
|
||||
}
|
||||
|
||||
// CustomResourceSubresourceScaleApplyConfiguration constructs an declarative configuration of the CustomResourceSubresourceScale type for use with
|
||||
// CustomResourceSubresourceScaleApplyConfiguration constructs a declarative configuration of the CustomResourceSubresourceScale type for use with
|
||||
// apply.
|
||||
func CustomResourceSubresourceScale() *CustomResourceSubresourceScaleApplyConfiguration {
|
||||
return &CustomResourceSubresourceScaleApplyConfiguration{}
|
||||
|
||||
@@ -18,13 +18,13 @@ limitations under the License.
|
||||
|
||||
package v1beta1
|
||||
|
||||
// CustomResourceValidationApplyConfiguration represents an declarative configuration of the CustomResourceValidation type for use
|
||||
// CustomResourceValidationApplyConfiguration represents a declarative configuration of the CustomResourceValidation type for use
|
||||
// with apply.
|
||||
type CustomResourceValidationApplyConfiguration struct {
|
||||
OpenAPIV3Schema *JSONSchemaPropsApplyConfiguration `json:"openAPIV3Schema,omitempty"`
|
||||
}
|
||||
|
||||
// CustomResourceValidationApplyConfiguration constructs an declarative configuration of the CustomResourceValidation type for use with
|
||||
// CustomResourceValidationApplyConfiguration constructs a declarative configuration of the CustomResourceValidation type for use with
|
||||
// apply.
|
||||
func CustomResourceValidation() *CustomResourceValidationApplyConfiguration {
|
||||
return &CustomResourceValidationApplyConfiguration{}
|
||||
|
||||
@@ -18,14 +18,14 @@ limitations under the License.
|
||||
|
||||
package v1beta1
|
||||
|
||||
// ExternalDocumentationApplyConfiguration represents an declarative configuration of the ExternalDocumentation type for use
|
||||
// ExternalDocumentationApplyConfiguration represents a declarative configuration of the ExternalDocumentation type for use
|
||||
// with apply.
|
||||
type ExternalDocumentationApplyConfiguration struct {
|
||||
Description *string `json:"description,omitempty"`
|
||||
URL *string `json:"url,omitempty"`
|
||||
}
|
||||
|
||||
// ExternalDocumentationApplyConfiguration constructs an declarative configuration of the ExternalDocumentation type for use with
|
||||
// ExternalDocumentationApplyConfiguration constructs a declarative configuration of the ExternalDocumentation type for use with
|
||||
// apply.
|
||||
func ExternalDocumentation() *ExternalDocumentationApplyConfiguration {
|
||||
return &ExternalDocumentationApplyConfiguration{}
|
||||
|
||||
@@ -22,7 +22,7 @@ import (
|
||||
v1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
|
||||
)
|
||||
|
||||
// JSONSchemaPropsApplyConfiguration represents an declarative configuration of the JSONSchemaProps type for use
|
||||
// JSONSchemaPropsApplyConfiguration represents a declarative configuration of the JSONSchemaProps type for use
|
||||
// with apply.
|
||||
type JSONSchemaPropsApplyConfiguration struct {
|
||||
ID *string `json:"id,omitempty"`
|
||||
@@ -71,7 +71,7 @@ type JSONSchemaPropsApplyConfiguration struct {
|
||||
XValidations *v1beta1.ValidationRules `json:"x-kubernetes-validations,omitempty"`
|
||||
}
|
||||
|
||||
// JSONSchemaPropsApplyConfiguration constructs an declarative configuration of the JSONSchemaProps type for use with
|
||||
// JSONSchemaPropsApplyConfiguration constructs a declarative configuration of the JSONSchemaProps type for use with
|
||||
// apply.
|
||||
func JSONSchemaProps() *JSONSchemaPropsApplyConfiguration {
|
||||
return &JSONSchemaPropsApplyConfiguration{}
|
||||
|
||||
39
vendor/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/selectablefield.go
generated
vendored
Normal file
39
vendor/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/selectablefield.go
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
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 v1beta1
|
||||
|
||||
// SelectableFieldApplyConfiguration represents a declarative configuration of the SelectableField type for use
|
||||
// with apply.
|
||||
type SelectableFieldApplyConfiguration struct {
|
||||
JSONPath *string `json:"jsonPath,omitempty"`
|
||||
}
|
||||
|
||||
// SelectableFieldApplyConfiguration constructs a declarative configuration of the SelectableField type for use with
|
||||
// apply.
|
||||
func SelectableField() *SelectableFieldApplyConfiguration {
|
||||
return &SelectableFieldApplyConfiguration{}
|
||||
}
|
||||
|
||||
// WithJSONPath sets the JSONPath 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 JSONPath field is set to the value of the last call.
|
||||
func (b *SelectableFieldApplyConfiguration) WithJSONPath(value string) *SelectableFieldApplyConfiguration {
|
||||
b.JSONPath = &value
|
||||
return b
|
||||
}
|
||||
@@ -18,7 +18,7 @@ limitations under the License.
|
||||
|
||||
package v1beta1
|
||||
|
||||
// ServiceReferenceApplyConfiguration represents an declarative configuration of the ServiceReference type for use
|
||||
// ServiceReferenceApplyConfiguration represents a declarative configuration of the ServiceReference type for use
|
||||
// with apply.
|
||||
type ServiceReferenceApplyConfiguration struct {
|
||||
Namespace *string `json:"namespace,omitempty"`
|
||||
@@ -27,7 +27,7 @@ type ServiceReferenceApplyConfiguration struct {
|
||||
Port *int32 `json:"port,omitempty"`
|
||||
}
|
||||
|
||||
// ServiceReferenceApplyConfiguration constructs an declarative configuration of the ServiceReference type for use with
|
||||
// ServiceReferenceApplyConfiguration constructs a declarative configuration of the ServiceReference type for use with
|
||||
// apply.
|
||||
func ServiceReference() *ServiceReferenceApplyConfiguration {
|
||||
return &ServiceReferenceApplyConfiguration{}
|
||||
|
||||
@@ -22,7 +22,7 @@ import (
|
||||
v1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
|
||||
)
|
||||
|
||||
// ValidationRuleApplyConfiguration represents an declarative configuration of the ValidationRule type for use
|
||||
// ValidationRuleApplyConfiguration represents a declarative configuration of the ValidationRule type for use
|
||||
// with apply.
|
||||
type ValidationRuleApplyConfiguration struct {
|
||||
Rule *string `json:"rule,omitempty"`
|
||||
@@ -33,7 +33,7 @@ type ValidationRuleApplyConfiguration struct {
|
||||
OptionalOldSelf *bool `json:"optionalOldSelf,omitempty"`
|
||||
}
|
||||
|
||||
// ValidationRuleApplyConfiguration constructs an declarative configuration of the ValidationRule type for use with
|
||||
// ValidationRuleApplyConfiguration constructs a declarative configuration of the ValidationRule type for use with
|
||||
// apply.
|
||||
func ValidationRule() *ValidationRuleApplyConfiguration {
|
||||
return &ValidationRuleApplyConfiguration{}
|
||||
|
||||
@@ -18,7 +18,7 @@ limitations under the License.
|
||||
|
||||
package v1beta1
|
||||
|
||||
// WebhookClientConfigApplyConfiguration represents an declarative configuration of the WebhookClientConfig type for use
|
||||
// WebhookClientConfigApplyConfiguration represents a declarative configuration of the WebhookClientConfig type for use
|
||||
// with apply.
|
||||
type WebhookClientConfigApplyConfiguration struct {
|
||||
URL *string `json:"url,omitempty"`
|
||||
@@ -26,7 +26,7 @@ type WebhookClientConfigApplyConfiguration struct {
|
||||
CABundle []byte `json:"caBundle,omitempty"`
|
||||
}
|
||||
|
||||
// WebhookClientConfigApplyConfiguration constructs an declarative configuration of the WebhookClientConfig type for use with
|
||||
// WebhookClientConfigApplyConfiguration constructs a declarative configuration of the WebhookClientConfig type for use with
|
||||
// apply.
|
||||
func WebhookClientConfig() *WebhookClientConfigApplyConfiguration {
|
||||
return &WebhookClientConfigApplyConfiguration{}
|
||||
|
||||
Reference in New Issue
Block a user