Group
Extension

IO-K8s/lib/IO/K8s/Api/Batch/V1/JobStatus.pm

package IO::K8s::Api::Batch::V1::JobStatus;
  use Moose;
  use IO::K8s;

  has 'active' => (is => 'ro', isa => 'Int'  );
  has 'completionTime' => (is => 'ro', isa => 'Str'  );
  has 'conditions' => (is => 'ro', isa => 'ArrayRef[IO::K8s::Api::Batch::V1::JobCondition]'  );
  has 'failed' => (is => 'ro', isa => 'Int'  );
  has 'startTime' => (is => 'ro', isa => 'Str'  );
  has 'succeeded' => (is => 'ro', isa => 'Int'  );

  sub to_json { IO::K8s->new->object_to_json(shift) }
1;


Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.