package Kubernetes::REST::Call::v1alpha1::RbacAuthorization::ListNamespacedRoleBinding; use Moo; use Types::Standard qw/Bool Int Str/; has continue => (is => 'ro', isa => Str); has fieldSelector => (is => 'ro', isa => Str); has labelSelector => (is => 'ro', isa => Str); has limit => (is => 'ro', isa => Int); has resourceVersion => (is => 'ro', isa => Str); has timeoutSeconds => (is => 'ro', isa => Int); has watch => (is => 'ro', isa => Bool); has includeUninitialized => (is => 'ro', isa => Bool); has namespace => (is => 'ro', isa => Str,required => 1); has pretty => (is => 'ro', isa => Str); sub _url_params { [ { name => 'namespace' }, ] } sub _query_params { [ { name => 'continue' }, { name => 'fieldSelector' }, { name => 'labelSelector' }, { name => 'limit' }, { name => 'resourceVersion' }, { name => 'timeoutSeconds' }, { name => 'watch' }, { name => 'includeUninitialized' }, { name => 'pretty' }, ] } sub _url { '/apis/rbac.authorization.k8s.io/v1alpha1/namespaces/{namespace}/rolebindings' } sub _method { 'GET' } 1;