ResourcePolicyRule constructor

const ResourcePolicyRule({
  1. required List<String> apiGroups,
  2. bool? clusterScope,
  3. List<String>? namespaces,
  4. required List<String> resources,
  5. required List<String> verbs,
})

Default constructor.

Implementation

const ResourcePolicyRule({
  required this.apiGroups,
  this.clusterScope,
  this.namespaces,
  required this.resources,
  required this.verbs,
});