Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 1.72 KB | None | 0 0
  1. $VAR1 = [
  2.           bless( [
  3.                    bless( {
  4.                             'member' => bless( {
  5.                                                'address' => '10.2.1.32',
  6.                                                'port' => '80'
  7.                                              }, 'Common::IPPortDefinition' ),
  8.                             'object_status' => bless( {
  9.                                                       'availability_status' => 'AVAILABILITY_STATUS_GREEN',
  10.                                                       'status_description' => 'Pool member is available',
  11.                                                       'enabled_status' => 'ENABLED_STATUS_ENABLED'
  12.                                                     }, 'LocalLB::ObjectStatus' )
  13.                           }, 'LocalLB::PoolMember::MemberObjectStatus' ),
  14.                    bless( {
  15.                             'member' => bless( {
  16.                                                'address' => '10.2.1.33',
  17.                                                'port' => '80'
  18.                                              }, 'Common::IPPortDefinition' ),
  19.                             'object_status' => bless( {
  20.                                                       'availability_status' => 'AVAILABILITY_STATUS_GREEN',
  21.                                                       'status_description' => 'Pool member is available',
  22.                                                       'enabled_status' => 'ENABLED_STATUS_ENABLED'
  23.                                                     }, 'LocalLB::ObjectStatus' )
  24.                           }, 'LocalLB::PoolMember::MemberObjectStatus' )
  25.                  ], 'LocalLB::PoolMember::MemberObjectStatus[]' )
  26.         ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement