package Kubernetes::REST::Call::v1beta1::RbacAuthorization::PatchClusterRole; use Moo; use Types::Standard qw/Defined Str/; has body => (is => 'ro', isa => Defined,required => 1); has dryRun => (is => 'ro', isa => Str); has name => (is => 'ro', isa => Str,required => 1); has pretty => (is => 'ro', isa => Str); sub _body_params { [ { name => 'body' }, ] } sub _url_params { [ { name => 'name' }, ] } sub _query_params { [ { name => 'dryRun' }, { name => 'pretty' }, ] } sub _url { '/apis/rbac.authorization.k8s.io/v1beta1/clusterroles/{name}' } sub _method { 'PATCH' } 1;