# Zilla::IoK8sApiFlowcontrolV1beta2PolicyRulesWithSubjects ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **non_resource_rules** | [**Array<IoK8sApiFlowcontrolV1beta2NonResourcePolicyRule>**](IoK8sApiFlowcontrolV1beta2NonResourcePolicyRule.md) | `nonResourceRules` is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL. | [optional] | | **resource_rules** | [**Array<IoK8sApiFlowcontrolV1beta2ResourcePolicyRule>**](IoK8sApiFlowcontrolV1beta2ResourcePolicyRule.md) | `resourceRules` is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource. At least one of `resourceRules` and `nonResourceRules` has to be non-empty. | [optional] | | **subjects** | [**Array<IoK8sApiFlowcontrolV1beta2Subject>**](IoK8sApiFlowcontrolV1beta2Subject.md) | subjects is the list of normal user, serviceaccount, or group that this rule cares about. There must be at least one member in this slice. A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request. Required. | | ## Example ```ruby require 'zilla' instance = Zilla::IoK8sApiFlowcontrolV1beta2PolicyRulesWithSubjects.new( non_resource_rules: null, resource_rules: null, subjects: null ) ```