NAME


NAME

Infoblox::Grid::Discovery::DeviceComponent


DESCRIPTION

The object provides information about the device component.


SESSION METHODS

Infoblox::Session->get( )

Use this method to retrieve all the matching objects from the Infoblox appliance. See Infoblox::Session->get() for parameters and return values.

Key References
 Apply the following attributes to get a specific object:
    device      - Optional. The device object.
    description - Optional. The component description.
Example
 my @retrieved_objs = $session->get(
     'object'      => 'Infoblox::Grid::Discovery::DeviceComponent',
     'description' => 'simple',
 );

Infoblox::Session->search( )

Use this method to search for objects in the Infoblox appliance. See Infoblox::Session->search() for parameters and return values.

Key References
 Apply the following attributes to search for an object:
    device      - Optional. The device object.
    description - Optional. The component description (regular expression).
Example
 my @retrieved_objs = $session->search(
     'object'      => 'Infoblox::Grid::Discovery::DeviceComponent',
     'description' => '^simple',
 );


METHODS

This section describes all the methods that you can use to set or retrieve the attribute values of the object.

class( )

Use this method to retrieve the general hardware type of the componenet. This attribute is read-only.

Parameter

None.

Returns

The method returns the attribute value.

Example
 # Get attribute value
 my $value = $object->class();

component_name( )

Use this method to retrieve the component name. This attribute is read-only.

Parameter

None.

Returns

The method returns the attribute value.

Example
 # Get attribute value
 my $value = $object->component_name();

description( )

Use this method to retrieve the component description. This attribute is read-only.

Parameter

None.

Returns

The method returns the attribute value.

Example
 # Get attribute value
 my $value = $object->description();

model( )

Use this method to retrieve the model name. This attribute is read-only.

Parameter

None.

Returns

The method returns the attribute value.

Example
 # Get attribute value
 my $value = $object->model();

device( )

Use this method to retrieve the device object. This attribute is read-only.

Parameter

None.

Returns

The method returns an Infoblox::Grid::Discovery::Device object.

Example
 # Get attribute value
 my $value = $object->device();

serial( )

Use this method to retrieve the component serial number. This attribute is read-only.

Parameter

None.

Returns

The method returns the attribute value.

Example
 # Get attribute value
 my $value = $object->serial();


AUTHOR

Infoblox Inc. http://www.infoblox.com/


SEE ALSO

Infoblox::Session, Infoblox::Grid::Discovery::Device


COPYRIGHT

Copyright (c) 2017 Infoblox Inc.