Documentation
¶
Index ¶
- type JobSetOperatorApplyConfiguration
- func ExtractJobSetOperator(jobSetOperator *openshiftoperatorv1.JobSetOperator, fieldManager string) (*JobSetOperatorApplyConfiguration, error)
- func ExtractJobSetOperatorStatus(jobSetOperator *openshiftoperatorv1.JobSetOperator, fieldManager string) (*JobSetOperatorApplyConfiguration, error)
- func JobSetOperator(name string) *JobSetOperatorApplyConfiguration
- func (b *JobSetOperatorApplyConfiguration) GetAPIVersion() *string
- func (b *JobSetOperatorApplyConfiguration) GetKind() *string
- func (b *JobSetOperatorApplyConfiguration) GetName() *string
- func (b *JobSetOperatorApplyConfiguration) GetNamespace() *string
- func (b JobSetOperatorApplyConfiguration) IsApplyConfiguration()
- func (b *JobSetOperatorApplyConfiguration) WithAPIVersion(value string) *JobSetOperatorApplyConfiguration
- func (b *JobSetOperatorApplyConfiguration) WithAnnotations(entries map[string]string) *JobSetOperatorApplyConfiguration
- func (b *JobSetOperatorApplyConfiguration) WithCreationTimestamp(value apismetav1.Time) *JobSetOperatorApplyConfiguration
- func (b *JobSetOperatorApplyConfiguration) WithDeletionGracePeriodSeconds(value int64) *JobSetOperatorApplyConfiguration
- func (b *JobSetOperatorApplyConfiguration) WithDeletionTimestamp(value apismetav1.Time) *JobSetOperatorApplyConfiguration
- func (b *JobSetOperatorApplyConfiguration) WithFinalizers(values ...string) *JobSetOperatorApplyConfiguration
- func (b *JobSetOperatorApplyConfiguration) WithGenerateName(value string) *JobSetOperatorApplyConfiguration
- func (b *JobSetOperatorApplyConfiguration) WithGeneration(value int64) *JobSetOperatorApplyConfiguration
- func (b *JobSetOperatorApplyConfiguration) WithKind(value string) *JobSetOperatorApplyConfiguration
- func (b *JobSetOperatorApplyConfiguration) WithLabels(entries map[string]string) *JobSetOperatorApplyConfiguration
- func (b *JobSetOperatorApplyConfiguration) WithName(value string) *JobSetOperatorApplyConfiguration
- func (b *JobSetOperatorApplyConfiguration) WithNamespace(value string) *JobSetOperatorApplyConfiguration
- func (b *JobSetOperatorApplyConfiguration) WithOwnerReferences(values ...*metav1.OwnerReferenceApplyConfiguration) *JobSetOperatorApplyConfiguration
- func (b *JobSetOperatorApplyConfiguration) WithResourceVersion(value string) *JobSetOperatorApplyConfiguration
- func (b *JobSetOperatorApplyConfiguration) WithSpec(value *JobSetOperatorSpecApplyConfiguration) *JobSetOperatorApplyConfiguration
- func (b *JobSetOperatorApplyConfiguration) WithStatus(value *JobSetOperatorStatusApplyConfiguration) *JobSetOperatorApplyConfiguration
- func (b *JobSetOperatorApplyConfiguration) WithUID(value types.UID) *JobSetOperatorApplyConfiguration
- type JobSetOperatorSpecApplyConfiguration
- func (b *JobSetOperatorSpecApplyConfiguration) WithLogLevel(value apioperatorv1.LogLevel) *JobSetOperatorSpecApplyConfiguration
- func (b *JobSetOperatorSpecApplyConfiguration) WithManagementState(value apioperatorv1.ManagementState) *JobSetOperatorSpecApplyConfiguration
- func (b *JobSetOperatorSpecApplyConfiguration) WithObservedConfig(value runtime.RawExtension) *JobSetOperatorSpecApplyConfiguration
- func (b *JobSetOperatorSpecApplyConfiguration) WithOperatorLogLevel(value apioperatorv1.LogLevel) *JobSetOperatorSpecApplyConfiguration
- func (b *JobSetOperatorSpecApplyConfiguration) WithUnsupportedConfigOverrides(value runtime.RawExtension) *JobSetOperatorSpecApplyConfiguration
- type JobSetOperatorStatusApplyConfiguration
- func (b *JobSetOperatorStatusApplyConfiguration) WithConditions(values ...*operatorv1.OperatorConditionApplyConfiguration) *JobSetOperatorStatusApplyConfiguration
- func (b *JobSetOperatorStatusApplyConfiguration) WithGenerations(values ...*operatorv1.GenerationStatusApplyConfiguration) *JobSetOperatorStatusApplyConfiguration
- func (b *JobSetOperatorStatusApplyConfiguration) WithLatestAvailableRevision(value int32) *JobSetOperatorStatusApplyConfiguration
- func (b *JobSetOperatorStatusApplyConfiguration) WithObservedGeneration(value int64) *JobSetOperatorStatusApplyConfiguration
- func (b *JobSetOperatorStatusApplyConfiguration) WithReadyReplicas(value int32) *JobSetOperatorStatusApplyConfiguration
- func (b *JobSetOperatorStatusApplyConfiguration) WithVersion(value string) *JobSetOperatorStatusApplyConfiguration
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type JobSetOperatorApplyConfiguration ¶
type JobSetOperatorApplyConfiguration struct {
metav1.TypeMetaApplyConfiguration `json:",inline"`
*metav1.ObjectMetaApplyConfiguration `json:"metadata,omitempty"`
Spec *JobSetOperatorSpecApplyConfiguration `json:"spec,omitempty"`
Status *JobSetOperatorStatusApplyConfiguration `json:"status,omitempty"`
}
JobSetOperatorApplyConfiguration represents a declarative configuration of the JobSetOperator type for use with apply.
func ExtractJobSetOperator ¶
func ExtractJobSetOperator(jobSetOperator *openshiftoperatorv1.JobSetOperator, fieldManager string) (*JobSetOperatorApplyConfiguration, error)
ExtractJobSetOperator extracts the applied configuration owned by fieldManager from jobSetOperator. If no managedFields are found in jobSetOperator for fieldManager, a JobSetOperatorApplyConfiguration 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. jobSetOperator must be a unmodified JobSetOperator API object that was retrieved from the Kubernetes API. ExtractJobSetOperator 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. Experimental!
func ExtractJobSetOperatorStatus ¶
func ExtractJobSetOperatorStatus(jobSetOperator *openshiftoperatorv1.JobSetOperator, fieldManager string) (*JobSetOperatorApplyConfiguration, error)
ExtractJobSetOperatorStatus is the same as ExtractJobSetOperator except that it extracts the status subresource applied configuration. Experimental!
func JobSetOperator ¶
func JobSetOperator(name string) *JobSetOperatorApplyConfiguration
JobSetOperator constructs a declarative configuration of the JobSetOperator type for use with apply.
func (*JobSetOperatorApplyConfiguration) GetAPIVersion ¶
func (b *JobSetOperatorApplyConfiguration) GetAPIVersion() *string
GetAPIVersion retrieves the value of the APIVersion field in the declarative configuration.
func (*JobSetOperatorApplyConfiguration) GetKind ¶
func (b *JobSetOperatorApplyConfiguration) GetKind() *string
GetKind retrieves the value of the Kind field in the declarative configuration.
func (*JobSetOperatorApplyConfiguration) GetName ¶
func (b *JobSetOperatorApplyConfiguration) GetName() *string
GetName retrieves the value of the Name field in the declarative configuration.
func (*JobSetOperatorApplyConfiguration) GetNamespace ¶
func (b *JobSetOperatorApplyConfiguration) GetNamespace() *string
GetNamespace retrieves the value of the Namespace field in the declarative configuration.
func (JobSetOperatorApplyConfiguration) IsApplyConfiguration ¶
func (b JobSetOperatorApplyConfiguration) IsApplyConfiguration()
func (*JobSetOperatorApplyConfiguration) WithAPIVersion ¶
func (b *JobSetOperatorApplyConfiguration) WithAPIVersion(value string) *JobSetOperatorApplyConfiguration
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 (*JobSetOperatorApplyConfiguration) WithAnnotations ¶
func (b *JobSetOperatorApplyConfiguration) WithAnnotations(entries map[string]string) *JobSetOperatorApplyConfiguration
WithAnnotations puts the entries into the Annotations field in the declarative configuration 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 (*JobSetOperatorApplyConfiguration) WithCreationTimestamp ¶
func (b *JobSetOperatorApplyConfiguration) WithCreationTimestamp(value apismetav1.Time) *JobSetOperatorApplyConfiguration
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 (*JobSetOperatorApplyConfiguration) WithDeletionGracePeriodSeconds ¶
func (b *JobSetOperatorApplyConfiguration) WithDeletionGracePeriodSeconds(value int64) *JobSetOperatorApplyConfiguration
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 (*JobSetOperatorApplyConfiguration) WithDeletionTimestamp ¶
func (b *JobSetOperatorApplyConfiguration) WithDeletionTimestamp(value apismetav1.Time) *JobSetOperatorApplyConfiguration
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 (*JobSetOperatorApplyConfiguration) WithFinalizers ¶
func (b *JobSetOperatorApplyConfiguration) WithFinalizers(values ...string) *JobSetOperatorApplyConfiguration
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 (*JobSetOperatorApplyConfiguration) WithGenerateName ¶
func (b *JobSetOperatorApplyConfiguration) WithGenerateName(value string) *JobSetOperatorApplyConfiguration
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 (*JobSetOperatorApplyConfiguration) WithGeneration ¶
func (b *JobSetOperatorApplyConfiguration) WithGeneration(value int64) *JobSetOperatorApplyConfiguration
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 (*JobSetOperatorApplyConfiguration) WithKind ¶
func (b *JobSetOperatorApplyConfiguration) WithKind(value string) *JobSetOperatorApplyConfiguration
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 (*JobSetOperatorApplyConfiguration) WithLabels ¶
func (b *JobSetOperatorApplyConfiguration) WithLabels(entries map[string]string) *JobSetOperatorApplyConfiguration
WithLabels puts the entries into the Labels field in the declarative configuration 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 (*JobSetOperatorApplyConfiguration) WithName ¶
func (b *JobSetOperatorApplyConfiguration) WithName(value string) *JobSetOperatorApplyConfiguration
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 (*JobSetOperatorApplyConfiguration) WithNamespace ¶
func (b *JobSetOperatorApplyConfiguration) WithNamespace(value string) *JobSetOperatorApplyConfiguration
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 (*JobSetOperatorApplyConfiguration) WithOwnerReferences ¶
func (b *JobSetOperatorApplyConfiguration) WithOwnerReferences(values ...*metav1.OwnerReferenceApplyConfiguration) *JobSetOperatorApplyConfiguration
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 (*JobSetOperatorApplyConfiguration) WithResourceVersion ¶
func (b *JobSetOperatorApplyConfiguration) WithResourceVersion(value string) *JobSetOperatorApplyConfiguration
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 (*JobSetOperatorApplyConfiguration) WithSpec ¶
func (b *JobSetOperatorApplyConfiguration) WithSpec(value *JobSetOperatorSpecApplyConfiguration) *JobSetOperatorApplyConfiguration
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 (*JobSetOperatorApplyConfiguration) WithStatus ¶
func (b *JobSetOperatorApplyConfiguration) WithStatus(value *JobSetOperatorStatusApplyConfiguration) *JobSetOperatorApplyConfiguration
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 (*JobSetOperatorApplyConfiguration) WithUID ¶
func (b *JobSetOperatorApplyConfiguration) WithUID(value types.UID) *JobSetOperatorApplyConfiguration
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.
type JobSetOperatorSpecApplyConfiguration ¶
type JobSetOperatorSpecApplyConfiguration struct {
operatorv1.OperatorSpecApplyConfiguration `json:",inline"`
}
JobSetOperatorSpecApplyConfiguration represents a declarative configuration of the JobSetOperatorSpec type for use with apply.
func JobSetOperatorSpec ¶
func JobSetOperatorSpec() *JobSetOperatorSpecApplyConfiguration
JobSetOperatorSpecApplyConfiguration constructs a declarative configuration of the JobSetOperatorSpec type for use with apply.
func (*JobSetOperatorSpecApplyConfiguration) WithLogLevel ¶
func (b *JobSetOperatorSpecApplyConfiguration) WithLogLevel(value apioperatorv1.LogLevel) *JobSetOperatorSpecApplyConfiguration
WithLogLevel sets the LogLevel 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 LogLevel field is set to the value of the last call.
func (*JobSetOperatorSpecApplyConfiguration) WithManagementState ¶
func (b *JobSetOperatorSpecApplyConfiguration) WithManagementState(value apioperatorv1.ManagementState) *JobSetOperatorSpecApplyConfiguration
WithManagementState sets the ManagementState 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 ManagementState field is set to the value of the last call.
func (*JobSetOperatorSpecApplyConfiguration) WithObservedConfig ¶
func (b *JobSetOperatorSpecApplyConfiguration) WithObservedConfig(value runtime.RawExtension) *JobSetOperatorSpecApplyConfiguration
WithObservedConfig sets the ObservedConfig 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 ObservedConfig field is set to the value of the last call.
func (*JobSetOperatorSpecApplyConfiguration) WithOperatorLogLevel ¶
func (b *JobSetOperatorSpecApplyConfiguration) WithOperatorLogLevel(value apioperatorv1.LogLevel) *JobSetOperatorSpecApplyConfiguration
WithOperatorLogLevel sets the OperatorLogLevel 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 OperatorLogLevel field is set to the value of the last call.
func (*JobSetOperatorSpecApplyConfiguration) WithUnsupportedConfigOverrides ¶
func (b *JobSetOperatorSpecApplyConfiguration) WithUnsupportedConfigOverrides(value runtime.RawExtension) *JobSetOperatorSpecApplyConfiguration
WithUnsupportedConfigOverrides sets the UnsupportedConfigOverrides 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 UnsupportedConfigOverrides field is set to the value of the last call.
type JobSetOperatorStatusApplyConfiguration ¶
type JobSetOperatorStatusApplyConfiguration struct {
operatorv1.OperatorStatusApplyConfiguration `json:",inline"`
}
JobSetOperatorStatusApplyConfiguration represents a declarative configuration of the JobSetOperatorStatus type for use with apply.
func JobSetOperatorStatus ¶
func JobSetOperatorStatus() *JobSetOperatorStatusApplyConfiguration
JobSetOperatorStatusApplyConfiguration constructs a declarative configuration of the JobSetOperatorStatus type for use with apply.
func (*JobSetOperatorStatusApplyConfiguration) WithConditions ¶
func (b *JobSetOperatorStatusApplyConfiguration) WithConditions(values ...*operatorv1.OperatorConditionApplyConfiguration) *JobSetOperatorStatusApplyConfiguration
WithConditions adds the given value to the Conditions 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 Conditions field.
func (*JobSetOperatorStatusApplyConfiguration) WithGenerations ¶
func (b *JobSetOperatorStatusApplyConfiguration) WithGenerations(values ...*operatorv1.GenerationStatusApplyConfiguration) *JobSetOperatorStatusApplyConfiguration
WithGenerations adds the given value to the Generations 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 Generations field.
func (*JobSetOperatorStatusApplyConfiguration) WithLatestAvailableRevision ¶
func (b *JobSetOperatorStatusApplyConfiguration) WithLatestAvailableRevision(value int32) *JobSetOperatorStatusApplyConfiguration
WithLatestAvailableRevision sets the LatestAvailableRevision 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 LatestAvailableRevision field is set to the value of the last call.
func (*JobSetOperatorStatusApplyConfiguration) WithObservedGeneration ¶
func (b *JobSetOperatorStatusApplyConfiguration) WithObservedGeneration(value int64) *JobSetOperatorStatusApplyConfiguration
WithObservedGeneration sets the ObservedGeneration 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 ObservedGeneration field is set to the value of the last call.
func (*JobSetOperatorStatusApplyConfiguration) WithReadyReplicas ¶
func (b *JobSetOperatorStatusApplyConfiguration) WithReadyReplicas(value int32) *JobSetOperatorStatusApplyConfiguration
WithReadyReplicas sets the ReadyReplicas 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 ReadyReplicas field is set to the value of the last call.
func (*JobSetOperatorStatusApplyConfiguration) WithVersion ¶
func (b *JobSetOperatorStatusApplyConfiguration) WithVersion(value string) *JobSetOperatorStatusApplyConfiguration
WithVersion sets the Version 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 Version field is set to the value of the last call.