60 lines
2.8 KiB
Go
60 lines
2.8 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 v1alpha2
|
|
|
|
// PodGroupResourceClaimStatusApplyConfiguration represents a declarative configuration of the PodGroupResourceClaimStatus type for use
|
|
// with apply.
|
|
//
|
|
// PodGroupResourceClaimStatus is stored in the PodGroupStatus for each
|
|
// PodGroupResourceClaim which references a ResourceClaimTemplate. It stores the
|
|
// generated name for the corresponding ResourceClaim.
|
|
type PodGroupResourceClaimStatusApplyConfiguration struct {
|
|
// Name uniquely identifies this resource claim inside the PodGroup. This
|
|
// must match the name of an entry in podgroup.spec.resourceClaims, which
|
|
// implies that the string must be a DNS_LABEL.
|
|
Name *string `json:"name,omitempty"`
|
|
// ResourceClaimName is the name of the ResourceClaim that was generated for
|
|
// the PodGroup in the namespace of the PodGroup. If this is unset, then
|
|
// generating a ResourceClaim was not necessary. The
|
|
// podgroup.spec.resourceClaims entry can be ignored in this case.
|
|
ResourceClaimName *string `json:"resourceClaimName,omitempty"`
|
|
}
|
|
|
|
// PodGroupResourceClaimStatusApplyConfiguration constructs a declarative configuration of the PodGroupResourceClaimStatus type for use with
|
|
// apply.
|
|
func PodGroupResourceClaimStatus() *PodGroupResourceClaimStatusApplyConfiguration {
|
|
return &PodGroupResourceClaimStatusApplyConfiguration{}
|
|
}
|
|
|
|
// 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 *PodGroupResourceClaimStatusApplyConfiguration) WithName(value string) *PodGroupResourceClaimStatusApplyConfiguration {
|
|
b.Name = &value
|
|
return b
|
|
}
|
|
|
|
// WithResourceClaimName sets the ResourceClaimName 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 ResourceClaimName field is set to the value of the last call.
|
|
func (b *PodGroupResourceClaimStatusApplyConfiguration) WithResourceClaimName(value string) *PodGroupResourceClaimStatusApplyConfiguration {
|
|
b.ResourceClaimName = &value
|
|
return b
|
|
}
|