Files
perl/lib/Kubernetes/Object/V1beta1Event.pm
2019-05-16 20:27:55 +08:00

360 lines
11 KiB
Perl

=begin comment
Kubernetes
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
The version of the OpenAPI document: v1.13.7
Generated by: https://openapi-generator.tech
=end comment
=cut
#
# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
# Do not edit the class manually.
# Ref: https://openapi-generator.tech
#
package Kubernetes::Object::V1beta1Event;
require 5.6.0;
use strict;
use warnings;
use utf8;
use JSON qw(decode_json);
use Data::Dumper;
use Module::Runtime qw(use_module);
use Log::Any qw($log);
use Date::Parse;
use DateTime;
use Kubernetes::Object::V1EventSource;
use Kubernetes::Object::V1ObjectMeta;
use Kubernetes::Object::V1ObjectReference;
use Kubernetes::Object::V1beta1EventSeries;
use base ( "Class::Accessor", "Class::Data::Inheritable" );
#
#Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system.
#
# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). Do not edit the class manually.
# REF: https://openapi-generator.tech
#
=begin comment
Kubernetes
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
The version of the OpenAPI document: v1.13.7
Generated by: https://openapi-generator.tech
=end comment
=cut
#
# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
# Do not edit the class manually.
# Ref: https://openapi-generator.tech
#
__PACKAGE__->mk_classdata( 'attribute_map' => {} );
__PACKAGE__->mk_classdata( 'openapi_types' => {} );
__PACKAGE__->mk_classdata( 'method_documentation' => {} );
__PACKAGE__->mk_classdata( 'class_documentation' => {} );
# new plain object
sub new {
my ( $class, %args ) = @_;
my $self = bless {}, $class;
$self->init(%args);
return $self;
}
# initialize the object
sub init {
my ( $self, %args ) = @_;
foreach my $attribute ( keys %{ $self->attribute_map } ) {
my $args_key = $self->attribute_map->{$attribute};
$self->$attribute( $args{$args_key} );
}
}
# return perl hash
sub to_hash {
my $self = shift;
my $_hash = decode_json( JSON->new->convert_blessed->encode($self) );
return $_hash;
}
# used by JSON for serialization
sub TO_JSON {
my $self = shift;
my $_data = {};
foreach my $_key ( keys %{ $self->attribute_map } ) {
if ( defined $self->{$_key} ) {
$_data->{ $self->attribute_map->{$_key} } = $self->{$_key};
}
}
return $_data;
}
# from Perl hashref
sub from_hash {
my ( $self, $hash ) = @_;
# loop through attributes and use openapi_types to deserialize the data
while ( my ( $_key, $_type ) = each %{ $self->openapi_types } ) {
my $_json_attribute = $self->attribute_map->{$_key};
if ( $_type =~ /^array\[(.+)\]$/i ) { # array
my $_subclass = $1;
my @_array = ();
foreach my $_element ( @{ $hash->{$_json_attribute} } ) {
push @_array, $self->_deserialize( $_subclass, $_element );
}
$self->{$_key} = \@_array;
}
elsif ( $_type =~ /^hash\[string,(.+)\]$/i ) { # hash
my $_subclass = $1;
my %_hash = ();
while ( my ( $_key, $_element ) =
each %{ $hash->{$_json_attribute} } )
{
$_hash{$_key} = $self->_deserialize( $_subclass, $_element );
}
$self->{$_key} = \%_hash;
}
elsif ( exists $hash->{$_json_attribute} )
{ #hash(model), primitive, datetime
$self->{$_key} =
$self->_deserialize( $_type, $hash->{$_json_attribute} );
}
else {
$log->debugf( "Warning: %s (%s) does not exist in input hash\n",
$_key, $_json_attribute );
}
}
return $self;
}
# deserialize non-array data
sub _deserialize {
my ( $self, $type, $data ) = @_;
$log->debugf( "deserializing %s with %s", Dumper($data), $type );
if ( $type eq 'DateTime' ) {
return DateTime->from_epoch( epoch => str2time($data) );
}
elsif ( grep( /^$type$/, ( 'int', 'double', 'string', 'boolean' ) ) ) {
return $data;
}
else { # hash(model)
my $_instance = eval "Kubernetes::Object::$type->new()";
return $_instance->from_hash($data);
}
}
__PACKAGE__->class_documentation(
{
description =>
'Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system.',
class => 'V1beta1Event',
required => [], # TODO
}
);
__PACKAGE__->method_documentation(
{
'action' => {
datatype => 'string',
base_name => 'action',
description =>
'What action was taken/failed regarding to the regarding object.',
format => '',
read_only => '',
},
'api_version' => {
datatype => 'string',
base_name => 'apiVersion',
description =>
'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources',
format => '',
read_only => '',
},
'deprecated_count' => {
datatype => 'int',
base_name => 'deprecatedCount',
description =>
'Deprecated field assuring backward compatibility with core.v1 Event type',
format => '',
read_only => '',
},
'deprecated_first_timestamp' => {
datatype => 'DateTime',
base_name => 'deprecatedFirstTimestamp',
description =>
'Deprecated field assuring backward compatibility with core.v1 Event type',
format => '',
read_only => '',
},
'deprecated_last_timestamp' => {
datatype => 'DateTime',
base_name => 'deprecatedLastTimestamp',
description =>
'Deprecated field assuring backward compatibility with core.v1 Event type',
format => '',
read_only => '',
},
'deprecated_source' => {
datatype => 'V1EventSource',
base_name => 'deprecatedSource',
description => '',
format => '',
read_only => '',
},
'event_time' => {
datatype => 'DateTime',
base_name => 'eventTime',
description => 'Required. Time when this Event was first observed.',
format => '',
read_only => '',
},
'kind' => {
datatype => 'string',
base_name => 'kind',
description =>
'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds',
format => '',
read_only => '',
},
'metadata' => {
datatype => 'V1ObjectMeta',
base_name => 'metadata',
description => '',
format => '',
read_only => '',
},
'note' => {
datatype => 'string',
base_name => 'note',
description =>
'Optional. A human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB.',
format => '',
read_only => '',
},
'reason' => {
datatype => 'string',
base_name => 'reason',
description => 'Why the action was taken.',
format => '',
read_only => '',
},
'regarding' => {
datatype => 'V1ObjectReference',
base_name => 'regarding',
description => '',
format => '',
read_only => '',
},
'related' => {
datatype => 'V1ObjectReference',
base_name => 'related',
description => '',
format => '',
read_only => '',
},
'reporting_controller' => {
datatype => 'string',
base_name => 'reportingController',
description =>
'Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.',
format => '',
read_only => '',
},
'reporting_instance' => {
datatype => 'string',
base_name => 'reportingInstance',
description =>
'ID of the controller instance, e.g. `kubelet-xyzf`.',
format => '',
read_only => '',
},
'series' => {
datatype => 'V1beta1EventSeries',
base_name => 'series',
description => '',
format => '',
read_only => '',
},
'type' => {
datatype => 'string',
base_name => 'type',
description =>
'Type of this event (Normal, Warning), new types could be added in the future.',
format => '',
read_only => '',
},
}
);
__PACKAGE__->openapi_types(
{
'action' => 'string',
'api_version' => 'string',
'deprecated_count' => 'int',
'deprecated_first_timestamp' => 'DateTime',
'deprecated_last_timestamp' => 'DateTime',
'deprecated_source' => 'V1EventSource',
'event_time' => 'DateTime',
'kind' => 'string',
'metadata' => 'V1ObjectMeta',
'note' => 'string',
'reason' => 'string',
'regarding' => 'V1ObjectReference',
'related' => 'V1ObjectReference',
'reporting_controller' => 'string',
'reporting_instance' => 'string',
'series' => 'V1beta1EventSeries',
'type' => 'string'
}
);
__PACKAGE__->attribute_map(
{
'action' => 'action',
'api_version' => 'apiVersion',
'deprecated_count' => 'deprecatedCount',
'deprecated_first_timestamp' => 'deprecatedFirstTimestamp',
'deprecated_last_timestamp' => 'deprecatedLastTimestamp',
'deprecated_source' => 'deprecatedSource',
'event_time' => 'eventTime',
'kind' => 'kind',
'metadata' => 'metadata',
'note' => 'note',
'reason' => 'reason',
'regarding' => 'regarding',
'related' => 'related',
'reporting_controller' => 'reportingController',
'reporting_instance' => 'reportingInstance',
'series' => 'series',
'type' => 'type'
}
);
__PACKAGE__->mk_accessors( keys %{ __PACKAGE__->attribute_map } );
1;