1/*
2Copyright The Kubernetes Authors.
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8    http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/
16
17// Code generated by applyconfiguration-gen. DO NOT EDIT.
18
19package v1beta1
20
21// PolicyRulesWithSubjectsApplyConfiguration represents an declarative configuration of the PolicyRulesWithSubjects type for use
22// with apply.
23type PolicyRulesWithSubjectsApplyConfiguration struct {
24	Subjects         []SubjectApplyConfiguration               `json:"subjects,omitempty"`
25	ResourceRules    []ResourcePolicyRuleApplyConfiguration    `json:"resourceRules,omitempty"`
26	NonResourceRules []NonResourcePolicyRuleApplyConfiguration `json:"nonResourceRules,omitempty"`
27}
28
29// PolicyRulesWithSubjectsApplyConfiguration constructs an declarative configuration of the PolicyRulesWithSubjects type for use with
30// apply.
31func PolicyRulesWithSubjects() *PolicyRulesWithSubjectsApplyConfiguration {
32	return &PolicyRulesWithSubjectsApplyConfiguration{}
33}
34
35// WithSubjects adds the given value to the Subjects field in the declarative configuration
36// and returns the receiver, so that objects can be build by chaining "With" function invocations.
37// If called multiple times, values provided by each call will be appended to the Subjects field.
38func (b *PolicyRulesWithSubjectsApplyConfiguration) WithSubjects(values ...*SubjectApplyConfiguration) *PolicyRulesWithSubjectsApplyConfiguration {
39	for i := range values {
40		if values[i] == nil {
41			panic("nil value passed to WithSubjects")
42		}
43		b.Subjects = append(b.Subjects, *values[i])
44	}
45	return b
46}
47
48// WithResourceRules adds the given value to the ResourceRules field in the declarative configuration
49// and returns the receiver, so that objects can be build by chaining "With" function invocations.
50// If called multiple times, values provided by each call will be appended to the ResourceRules field.
51func (b *PolicyRulesWithSubjectsApplyConfiguration) WithResourceRules(values ...*ResourcePolicyRuleApplyConfiguration) *PolicyRulesWithSubjectsApplyConfiguration {
52	for i := range values {
53		if values[i] == nil {
54			panic("nil value passed to WithResourceRules")
55		}
56		b.ResourceRules = append(b.ResourceRules, *values[i])
57	}
58	return b
59}
60
61// WithNonResourceRules adds the given value to the NonResourceRules field in the declarative configuration
62// and returns the receiver, so that objects can be build by chaining "With" function invocations.
63// If called multiple times, values provided by each call will be appended to the NonResourceRules field.
64func (b *PolicyRulesWithSubjectsApplyConfiguration) WithNonResourceRules(values ...*NonResourcePolicyRuleApplyConfiguration) *PolicyRulesWithSubjectsApplyConfiguration {
65	for i := range values {
66		if values[i] == nil {
67			panic("nil value passed to WithNonResourceRules")
68		}
69		b.NonResourceRules = append(b.NonResourceRules, *values[i])
70	}
71	return b
72}
73