File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -154,6 +154,23 @@ func (f FieldOwner) ApplyToUpdate(opts *UpdateOptions) {
154
154
opts .FieldManager = string (f )
155
155
}
156
156
157
+ // ApplyToSubResourcePatch applies this configuration to the given patch options.
158
+ func (f FieldOwner ) ApplyToSubResourcePatch (opts * SubResourcePatchOptions ) {
159
+ opts .FieldManager = string (f )
160
+ }
161
+
162
+ // ApplyToSubResourceCreate applies this configuration to the given create options.
163
+ func (f FieldOwner ) ApplyToSubResourceCreate (opts * SubResourceCreateOptions ) {
164
+ opts .FieldManager = string (f )
165
+ }
166
+
167
+ // ApplyToSubResourceUpdate applies this configuration to the given update options.
168
+ func (f FieldOwner ) ApplyToSubResourceUpdate (opts * SubResourceUpdateOptions ) {
169
+ opts .FieldManager = string (f )
170
+ }
171
+
172
+
173
+
157
174
// }}}
158
175
159
176
// {{{ Create Options
You can’t perform that action at this time.
0 commit comments