The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use Moo;
use Types::Standard qw/Bool Int Str/;
has continue => (is => 'ro', isa => Str);
has fieldSelector => (is => 'ro', isa => Str);
has includeUninitialized => (is => 'ro', isa => Bool);
has labelSelector => (is => 'ro', isa => Str);
has limit => (is => 'ro', isa => Int);
has namespace => (is => 'ro', isa => Str,required => 1);
has pretty => (is => 'ro', isa => Str);
has resourceVersion => (is => 'ro', isa => Str);
has timeoutSeconds => (is => 'ro', isa => Int);
has watch => (is => 'ro', isa => Bool);
sub _url_params { [
{ name => 'namespace' },
] }
sub _query_params { [
{ name => 'continue' },
{ name => 'fieldSelector' },
{ name => 'includeUninitialized' },
{ name => 'labelSelector' },
{ name => 'limit' },
{ name => 'pretty' },
{ name => 'resourceVersion' },
{ name => 'timeoutSeconds' },
{ name => 'watch' },
] }
sub _url { '/apis/apps/v1/watch/namespaces/{namespace}/controllerrevisions' }
sub _method { 'GET' }
1;