|
|
|
@@ -16,86 +16,40 @@ limitations under the License.
|
|
|
|
|
|
|
|
|
|
// Code generated by applyconfiguration-gen. DO NOT EDIT.
|
|
|
|
|
|
|
|
|
|
package v1alpha1
|
|
|
|
|
package v1
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
samplecontrollerv1alpha1 "gitea.t000-n.de/t.behrendt/authentik-kubernetes-operator/pkg/apis/samplecontroller/v1alpha1"
|
|
|
|
|
internal "gitea.t000-n.de/t.behrendt/authentik-kubernetes-operator/pkg/generated/applyconfiguration/internal"
|
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
|
apismetav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
|
types "k8s.io/apimachinery/pkg/types"
|
|
|
|
|
managedfields "k8s.io/apimachinery/pkg/util/managedfields"
|
|
|
|
|
v1 "k8s.io/client-go/applyconfigurations/meta/v1"
|
|
|
|
|
metav1 "k8s.io/client-go/applyconfigurations/meta/v1"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// FooApplyConfiguration represents a declarative configuration of the Foo type for use
|
|
|
|
|
// ProxyProviderApplyConfiguration represents a declarative configuration of the ProxyProvider type for use
|
|
|
|
|
// with apply.
|
|
|
|
|
//
|
|
|
|
|
// Foo is a specification for a Foo resource
|
|
|
|
|
type FooApplyConfiguration struct {
|
|
|
|
|
v1.TypeMetaApplyConfiguration `json:",inline"`
|
|
|
|
|
*v1.ObjectMetaApplyConfiguration `json:"metadata,omitempty"`
|
|
|
|
|
Spec *FooSpecApplyConfiguration `json:"spec,omitempty"`
|
|
|
|
|
Status *FooStatusApplyConfiguration `json:"status,omitempty"`
|
|
|
|
|
type ProxyProviderApplyConfiguration struct {
|
|
|
|
|
metav1.TypeMetaApplyConfiguration `json:""`
|
|
|
|
|
*metav1.ObjectMetaApplyConfiguration `json:"metadata,omitempty"`
|
|
|
|
|
Spec *ProxyProviderSpecApplyConfiguration `json:"spec,omitempty"`
|
|
|
|
|
Status *ProxyProviderStatusApplyConfiguration `json:"status,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Foo constructs a declarative configuration of the Foo type for use with
|
|
|
|
|
// ProxyProvider constructs a declarative configuration of the ProxyProvider type for use with
|
|
|
|
|
// apply.
|
|
|
|
|
func Foo(name, namespace string) *FooApplyConfiguration {
|
|
|
|
|
b := &FooApplyConfiguration{}
|
|
|
|
|
func ProxyProvider(name, namespace string) *ProxyProviderApplyConfiguration {
|
|
|
|
|
b := &ProxyProviderApplyConfiguration{}
|
|
|
|
|
b.WithName(name)
|
|
|
|
|
b.WithNamespace(namespace)
|
|
|
|
|
b.WithKind("Foo")
|
|
|
|
|
b.WithAPIVersion("samplecontroller.k8s.io/v1alpha1")
|
|
|
|
|
b.WithKind("ProxyProvider")
|
|
|
|
|
b.WithAPIVersion("proxyprovider.t000-n.de/v1")
|
|
|
|
|
return b
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ExtractFooFrom extracts the applied configuration owned by fieldManager from
|
|
|
|
|
// foo for the specified subresource. Pass an empty string for subresource to extract
|
|
|
|
|
// the main resource. Common subresources include "status", "scale", etc.
|
|
|
|
|
// foo must be a unmodified Foo API object that was retrieved from the Kubernetes API.
|
|
|
|
|
// ExtractFooFrom provides a way to perform a extract/modify-in-place/apply workflow.
|
|
|
|
|
// Note that an extracted apply configuration will contain fewer fields than what the fieldManager previously
|
|
|
|
|
// applied if another fieldManager has updated or force applied any of the previously applied fields.
|
|
|
|
|
func ExtractFooFrom(foo *samplecontrollerv1alpha1.Foo, fieldManager string, subresource string) (*FooApplyConfiguration, error) {
|
|
|
|
|
b := &FooApplyConfiguration{}
|
|
|
|
|
err := managedfields.ExtractInto(foo, internal.Parser().Type("io.k8s.sample-controller.pkg.apis.samplecontroller.v1alpha1.Foo"), fieldManager, b, subresource)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
b.WithName(foo.Name)
|
|
|
|
|
b.WithNamespace(foo.Namespace)
|
|
|
|
|
|
|
|
|
|
b.WithKind("Foo")
|
|
|
|
|
b.WithAPIVersion("samplecontroller.k8s.io/v1alpha1")
|
|
|
|
|
return b, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ExtractFoo extracts the applied configuration owned by fieldManager from
|
|
|
|
|
// foo. If no managedFields are found in foo for fieldManager, a
|
|
|
|
|
// FooApplyConfiguration is returned with only the Name, Namespace (if applicable),
|
|
|
|
|
// APIVersion and Kind populated. It is possible that no managed fields were found for because other
|
|
|
|
|
// field managers have taken ownership of all the fields previously owned by fieldManager, or because
|
|
|
|
|
// the fieldManager never owned fields any fields.
|
|
|
|
|
// foo must be a unmodified Foo API object that was retrieved from the Kubernetes API.
|
|
|
|
|
// ExtractFoo provides a way to perform a extract/modify-in-place/apply workflow.
|
|
|
|
|
// Note that an extracted apply configuration will contain fewer fields than what the fieldManager previously
|
|
|
|
|
// applied if another fieldManager has updated or force applied any of the previously applied fields.
|
|
|
|
|
func ExtractFoo(foo *samplecontrollerv1alpha1.Foo, fieldManager string) (*FooApplyConfiguration, error) {
|
|
|
|
|
return ExtractFooFrom(foo, fieldManager, "")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ExtractFooStatus extracts the applied configuration owned by fieldManager from
|
|
|
|
|
// foo for the status subresource.
|
|
|
|
|
func ExtractFooStatus(foo *samplecontrollerv1alpha1.Foo, fieldManager string) (*FooApplyConfiguration, error) {
|
|
|
|
|
return ExtractFooFrom(foo, fieldManager, "status")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (b FooApplyConfiguration) IsApplyConfiguration() {}
|
|
|
|
|
func (b ProxyProviderApplyConfiguration) IsApplyConfiguration() {}
|
|
|
|
|
|
|
|
|
|
// WithKind sets the Kind 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 Kind field is set to the value of the last call.
|
|
|
|
|
func (b *FooApplyConfiguration) WithKind(value string) *FooApplyConfiguration {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) WithKind(value string) *ProxyProviderApplyConfiguration {
|
|
|
|
|
b.TypeMetaApplyConfiguration.Kind = &value
|
|
|
|
|
return b
|
|
|
|
|
}
|
|
|
|
@@ -103,7 +57,7 @@ func (b *FooApplyConfiguration) WithKind(value string) *FooApplyConfiguration {
|
|
|
|
|
// WithAPIVersion sets the APIVersion 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 APIVersion field is set to the value of the last call.
|
|
|
|
|
func (b *FooApplyConfiguration) WithAPIVersion(value string) *FooApplyConfiguration {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) WithAPIVersion(value string) *ProxyProviderApplyConfiguration {
|
|
|
|
|
b.TypeMetaApplyConfiguration.APIVersion = &value
|
|
|
|
|
return b
|
|
|
|
|
}
|
|
|
|
@@ -111,7 +65,7 @@ func (b *FooApplyConfiguration) WithAPIVersion(value string) *FooApplyConfigurat
|
|
|
|
|
// WithName sets the Name 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 Name field is set to the value of the last call.
|
|
|
|
|
func (b *FooApplyConfiguration) WithName(value string) *FooApplyConfiguration {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) WithName(value string) *ProxyProviderApplyConfiguration {
|
|
|
|
|
b.ensureObjectMetaApplyConfigurationExists()
|
|
|
|
|
b.ObjectMetaApplyConfiguration.Name = &value
|
|
|
|
|
return b
|
|
|
|
@@ -120,7 +74,7 @@ func (b *FooApplyConfiguration) WithName(value string) *FooApplyConfiguration {
|
|
|
|
|
// WithGenerateName sets the GenerateName 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 GenerateName field is set to the value of the last call.
|
|
|
|
|
func (b *FooApplyConfiguration) WithGenerateName(value string) *FooApplyConfiguration {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) WithGenerateName(value string) *ProxyProviderApplyConfiguration {
|
|
|
|
|
b.ensureObjectMetaApplyConfigurationExists()
|
|
|
|
|
b.ObjectMetaApplyConfiguration.GenerateName = &value
|
|
|
|
|
return b
|
|
|
|
@@ -129,7 +83,7 @@ func (b *FooApplyConfiguration) WithGenerateName(value string) *FooApplyConfigur
|
|
|
|
|
// WithNamespace sets the Namespace 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 Namespace field is set to the value of the last call.
|
|
|
|
|
func (b *FooApplyConfiguration) WithNamespace(value string) *FooApplyConfiguration {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) WithNamespace(value string) *ProxyProviderApplyConfiguration {
|
|
|
|
|
b.ensureObjectMetaApplyConfigurationExists()
|
|
|
|
|
b.ObjectMetaApplyConfiguration.Namespace = &value
|
|
|
|
|
return b
|
|
|
|
@@ -138,7 +92,7 @@ func (b *FooApplyConfiguration) WithNamespace(value string) *FooApplyConfigurati
|
|
|
|
|
// WithUID sets the UID 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 UID field is set to the value of the last call.
|
|
|
|
|
func (b *FooApplyConfiguration) WithUID(value types.UID) *FooApplyConfiguration {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) WithUID(value types.UID) *ProxyProviderApplyConfiguration {
|
|
|
|
|
b.ensureObjectMetaApplyConfigurationExists()
|
|
|
|
|
b.ObjectMetaApplyConfiguration.UID = &value
|
|
|
|
|
return b
|
|
|
|
@@ -147,7 +101,7 @@ func (b *FooApplyConfiguration) WithUID(value types.UID) *FooApplyConfiguration
|
|
|
|
|
// WithResourceVersion sets the ResourceVersion 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 ResourceVersion field is set to the value of the last call.
|
|
|
|
|
func (b *FooApplyConfiguration) WithResourceVersion(value string) *FooApplyConfiguration {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) WithResourceVersion(value string) *ProxyProviderApplyConfiguration {
|
|
|
|
|
b.ensureObjectMetaApplyConfigurationExists()
|
|
|
|
|
b.ObjectMetaApplyConfiguration.ResourceVersion = &value
|
|
|
|
|
return b
|
|
|
|
@@ -156,7 +110,7 @@ func (b *FooApplyConfiguration) WithResourceVersion(value string) *FooApplyConfi
|
|
|
|
|
// WithGeneration sets the Generation 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 Generation field is set to the value of the last call.
|
|
|
|
|
func (b *FooApplyConfiguration) WithGeneration(value int64) *FooApplyConfiguration {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) WithGeneration(value int64) *ProxyProviderApplyConfiguration {
|
|
|
|
|
b.ensureObjectMetaApplyConfigurationExists()
|
|
|
|
|
b.ObjectMetaApplyConfiguration.Generation = &value
|
|
|
|
|
return b
|
|
|
|
@@ -165,7 +119,7 @@ func (b *FooApplyConfiguration) WithGeneration(value int64) *FooApplyConfigurati
|
|
|
|
|
// WithCreationTimestamp sets the CreationTimestamp 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 CreationTimestamp field is set to the value of the last call.
|
|
|
|
|
func (b *FooApplyConfiguration) WithCreationTimestamp(value metav1.Time) *FooApplyConfiguration {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) WithCreationTimestamp(value apismetav1.Time) *ProxyProviderApplyConfiguration {
|
|
|
|
|
b.ensureObjectMetaApplyConfigurationExists()
|
|
|
|
|
b.ObjectMetaApplyConfiguration.CreationTimestamp = &value
|
|
|
|
|
return b
|
|
|
|
@@ -174,7 +128,7 @@ func (b *FooApplyConfiguration) WithCreationTimestamp(value metav1.Time) *FooApp
|
|
|
|
|
// WithDeletionTimestamp sets the DeletionTimestamp 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 DeletionTimestamp field is set to the value of the last call.
|
|
|
|
|
func (b *FooApplyConfiguration) WithDeletionTimestamp(value metav1.Time) *FooApplyConfiguration {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) WithDeletionTimestamp(value apismetav1.Time) *ProxyProviderApplyConfiguration {
|
|
|
|
|
b.ensureObjectMetaApplyConfigurationExists()
|
|
|
|
|
b.ObjectMetaApplyConfiguration.DeletionTimestamp = &value
|
|
|
|
|
return b
|
|
|
|
@@ -183,7 +137,7 @@ func (b *FooApplyConfiguration) WithDeletionTimestamp(value metav1.Time) *FooApp
|
|
|
|
|
// WithDeletionGracePeriodSeconds sets the DeletionGracePeriodSeconds 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 DeletionGracePeriodSeconds field is set to the value of the last call.
|
|
|
|
|
func (b *FooApplyConfiguration) WithDeletionGracePeriodSeconds(value int64) *FooApplyConfiguration {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) WithDeletionGracePeriodSeconds(value int64) *ProxyProviderApplyConfiguration {
|
|
|
|
|
b.ensureObjectMetaApplyConfigurationExists()
|
|
|
|
|
b.ObjectMetaApplyConfiguration.DeletionGracePeriodSeconds = &value
|
|
|
|
|
return b
|
|
|
|
@@ -193,7 +147,7 @@ func (b *FooApplyConfiguration) WithDeletionGracePeriodSeconds(value int64) *Foo
|
|
|
|
|
// and returns the receiver, so that objects can be build by chaining "With" function invocations.
|
|
|
|
|
// If called multiple times, the entries provided by each call will be put on the Labels field,
|
|
|
|
|
// overwriting an existing map entries in Labels field with the same key.
|
|
|
|
|
func (b *FooApplyConfiguration) WithLabels(entries map[string]string) *FooApplyConfiguration {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) WithLabels(entries map[string]string) *ProxyProviderApplyConfiguration {
|
|
|
|
|
b.ensureObjectMetaApplyConfigurationExists()
|
|
|
|
|
if b.ObjectMetaApplyConfiguration.Labels == nil && len(entries) > 0 {
|
|
|
|
|
b.ObjectMetaApplyConfiguration.Labels = make(map[string]string, len(entries))
|
|
|
|
@@ -208,7 +162,7 @@ func (b *FooApplyConfiguration) WithLabels(entries map[string]string) *FooApplyC
|
|
|
|
|
// and returns the receiver, so that objects can be build by chaining "With" function invocations.
|
|
|
|
|
// If called multiple times, the entries provided by each call will be put on the Annotations field,
|
|
|
|
|
// overwriting an existing map entries in Annotations field with the same key.
|
|
|
|
|
func (b *FooApplyConfiguration) WithAnnotations(entries map[string]string) *FooApplyConfiguration {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) WithAnnotations(entries map[string]string) *ProxyProviderApplyConfiguration {
|
|
|
|
|
b.ensureObjectMetaApplyConfigurationExists()
|
|
|
|
|
if b.ObjectMetaApplyConfiguration.Annotations == nil && len(entries) > 0 {
|
|
|
|
|
b.ObjectMetaApplyConfiguration.Annotations = make(map[string]string, len(entries))
|
|
|
|
@@ -222,7 +176,7 @@ func (b *FooApplyConfiguration) WithAnnotations(entries map[string]string) *FooA
|
|
|
|
|
// WithOwnerReferences adds the given value to the OwnerReferences 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 OwnerReferences field.
|
|
|
|
|
func (b *FooApplyConfiguration) WithOwnerReferences(values ...*v1.OwnerReferenceApplyConfiguration) *FooApplyConfiguration {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) WithOwnerReferences(values ...*metav1.OwnerReferenceApplyConfiguration) *ProxyProviderApplyConfiguration {
|
|
|
|
|
b.ensureObjectMetaApplyConfigurationExists()
|
|
|
|
|
for i := range values {
|
|
|
|
|
if values[i] == nil {
|
|
|
|
@@ -236,7 +190,7 @@ func (b *FooApplyConfiguration) WithOwnerReferences(values ...*v1.OwnerReference
|
|
|
|
|
// WithFinalizers adds the given value to the Finalizers 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 Finalizers field.
|
|
|
|
|
func (b *FooApplyConfiguration) WithFinalizers(values ...string) *FooApplyConfiguration {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) WithFinalizers(values ...string) *ProxyProviderApplyConfiguration {
|
|
|
|
|
b.ensureObjectMetaApplyConfigurationExists()
|
|
|
|
|
for i := range values {
|
|
|
|
|
b.ObjectMetaApplyConfiguration.Finalizers = append(b.ObjectMetaApplyConfiguration.Finalizers, values[i])
|
|
|
|
@@ -244,16 +198,16 @@ func (b *FooApplyConfiguration) WithFinalizers(values ...string) *FooApplyConfig
|
|
|
|
|
return b
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (b *FooApplyConfiguration) ensureObjectMetaApplyConfigurationExists() {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) ensureObjectMetaApplyConfigurationExists() {
|
|
|
|
|
if b.ObjectMetaApplyConfiguration == nil {
|
|
|
|
|
b.ObjectMetaApplyConfiguration = &v1.ObjectMetaApplyConfiguration{}
|
|
|
|
|
b.ObjectMetaApplyConfiguration = &metav1.ObjectMetaApplyConfiguration{}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// WithSpec sets the Spec 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 Spec field is set to the value of the last call.
|
|
|
|
|
func (b *FooApplyConfiguration) WithSpec(value *FooSpecApplyConfiguration) *FooApplyConfiguration {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) WithSpec(value *ProxyProviderSpecApplyConfiguration) *ProxyProviderApplyConfiguration {
|
|
|
|
|
b.Spec = value
|
|
|
|
|
return b
|
|
|
|
|
}
|
|
|
|
@@ -261,29 +215,29 @@ func (b *FooApplyConfiguration) WithSpec(value *FooSpecApplyConfiguration) *FooA
|
|
|
|
|
// WithStatus sets the Status 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 Status field is set to the value of the last call.
|
|
|
|
|
func (b *FooApplyConfiguration) WithStatus(value *FooStatusApplyConfiguration) *FooApplyConfiguration {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) WithStatus(value *ProxyProviderStatusApplyConfiguration) *ProxyProviderApplyConfiguration {
|
|
|
|
|
b.Status = value
|
|
|
|
|
return b
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetKind retrieves the value of the Kind field in the declarative configuration.
|
|
|
|
|
func (b *FooApplyConfiguration) GetKind() *string {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) GetKind() *string {
|
|
|
|
|
return b.TypeMetaApplyConfiguration.Kind
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetAPIVersion retrieves the value of the APIVersion field in the declarative configuration.
|
|
|
|
|
func (b *FooApplyConfiguration) GetAPIVersion() *string {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) GetAPIVersion() *string {
|
|
|
|
|
return b.TypeMetaApplyConfiguration.APIVersion
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetName retrieves the value of the Name field in the declarative configuration.
|
|
|
|
|
func (b *FooApplyConfiguration) GetName() *string {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) GetName() *string {
|
|
|
|
|
b.ensureObjectMetaApplyConfigurationExists()
|
|
|
|
|
return b.ObjectMetaApplyConfiguration.Name
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetNamespace retrieves the value of the Namespace field in the declarative configuration.
|
|
|
|
|
func (b *FooApplyConfiguration) GetNamespace() *string {
|
|
|
|
|
func (b *ProxyProviderApplyConfiguration) GetNamespace() *string {
|
|
|
|
|
b.ensureObjectMetaApplyConfigurationExists()
|
|
|
|
|
return b.ObjectMetaApplyConfiguration.Namespace
|
|
|
|
|
}
|