Class: Com::Vmware::Appliance::Techpreview::Monitoring::Snmp::SNMPStats

Inherits:
VAPI::Bindings::VapiStruct
  • Object
show all
Defined in:
/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb

Overview

``Com::Vmware::Appliance::Techpreview::Monitoring::Snmp::SNMPStats`` class Structure to provide operators diagnostics on snmp agent itself.

Instance Attribute Summary (collapse)

Class Method Summary (collapse)

Instance Method Summary (collapse)

Constructor Details

- (SNMPStats) initialize(ruby_values = nil, struct_value = nil)

Constructs a new instance.

Parameters:

  • ruby_values (Hash) (defaults to: nil)

    a map of initial property values (optional)

  • struct_value (VAPI::Data::StructValue) (defaults to: nil)

    a raw StructValue from the wire (optional)



505
506
507
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 505

def initialize(ruby_values=nil, struct_value=nil)
    super(self.class.binding_type, ruby_values, struct_value)
end

Instance Attribute Details

- (String) avgresponsetime

Average response time

Returns:

  • (String)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) avgvarbinds

No of ave:rage var binds

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) inasnparseerrs

No of parse errors

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) inbadcommunitynames

No of bad community names

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) inbadcommunityuses

No of bad community uses

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) inbadvalues

No of bad values

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) inbadversions

No of bad versions

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) ingenerrs

No of gen errors

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) innosuchnames

No of no such names

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) inpkts

No of input packets

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) intoobigs

No of too bigs

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) maxvarbinds

No of max var binds

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) outbadvalues

No of bad values

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) outgenerrs

No of gen errors

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) outnosuchnames

No of no such names

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) outpkts

No of output packets

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) outtoobigs

No out output too bigs

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) outtraps

No of output traps

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) silentdrops

No of silent drops

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (String) sysuptime

System uptime

Returns:

  • (String)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) usmstatsdecryptionerrors

No. of decryption errors

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) usmstatsnotintimewindows

No of stats not in time window

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) usmstatsunknownengineids

No of usm stats unknown engine ids

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) usmstatsunknownusernames

No of usm stats unknown

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (Fixnum) usmstatswrongdigests

No of wrogn digests

Returns:

  • (Fixnum)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (String) worstresponsetime

Response time

Returns:

  • (String)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

- (String) worstrtimelast

Last updated time

Returns:

  • (String)


430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 430

class SNMPStats < VAPI::Bindings::VapiStruct

    class << self
        # Holds (gets or creates) the binding type metadata for this structure type.
        # @scope class
        # @return [VAPI::Bindings::StructType] the binding type
        def binding_type
            @binding_type ||= VAPI::Bindings::StructType.new(
                'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
                {
                    'sysuptime' => VAPI::Bindings::StringType.instance,
                    'worstrtimelast' => VAPI::Bindings::StringType.instance,
                    'avgresponsetime' => VAPI::Bindings::StringType.instance,
                    'worstresponsetime' => VAPI::Bindings::StringType.instance,
                    'inpkts' => VAPI::Bindings::IntegerType.instance,
                    'outpkts' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
                    'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
                    'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
                    'inbadversions' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
                    'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
                    'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
                    'intoobigs' => VAPI::Bindings::IntegerType.instance,
                    'innosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'inbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'ingenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtoobigs' => VAPI::Bindings::IntegerType.instance,
                    'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
                    'outbadvalues' => VAPI::Bindings::IntegerType.instance,
                    'outgenerrs' => VAPI::Bindings::IntegerType.instance,
                    'outtraps' => VAPI::Bindings::IntegerType.instance,
                    'silentdrops' => VAPI::Bindings::IntegerType.instance,
                    'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
                    'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
                },
                SNMPStats,
                false,
                nil)
        end
    end

    attr_accessor :sysuptime,
                  :worstrtimelast,
                  :avgresponsetime,
                  :worstresponsetime,
                  :inpkts,
                  :outpkts,
                  :usmstatsnotintimewindows,
                  :usmstatsunknownusernames,
                  :usmstatsunknownengineids,
                  :usmstatswrongdigests,
                  :usmstatsdecryptionerrors,
                  :inbadversions,
                  :inbadcommunitynames,
                  :inbadcommunityuses,
                  :inasnparseerrs,
                  :intoobigs,
                  :innosuchnames,
                  :inbadvalues,
                  :ingenerrs,
                  :outtoobigs,
                  :outnosuchnames,
                  :outbadvalues,
                  :outgenerrs,
                  :outtraps,
                  :silentdrops,
                  :avgvarbinds,
                  :maxvarbinds

    # Constructs a new instance.
    # @param ruby_values [Hash] a map of initial property values (optional)
    # @param struct_value [VAPI::Data::StructValue] a raw StructValue from the wire (optional)
    def initialize(ruby_values=nil, struct_value=nil)
        super(self.class.binding_type, ruby_values, struct_value)
    end
end

Class Method Details

+ (VAPI::Bindings::StructType) binding_type

Holds (gets or creates) the binding type metadata for this structure type.

Returns:

  • (VAPI::Bindings::StructType)

    the binding type



436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/techpreview/monitoring.rb', line 436

def binding_type
    @binding_type ||= VAPI::Bindings::StructType.new(
        'com.vmware.appliance.techpreview.monitoring.snmp.SNMP_stats',
        {
            'sysuptime' => VAPI::Bindings::StringType.instance,
            'worstrtimelast' => VAPI::Bindings::StringType.instance,
            'avgresponsetime' => VAPI::Bindings::StringType.instance,
            'worstresponsetime' => VAPI::Bindings::StringType.instance,
            'inpkts' => VAPI::Bindings::IntegerType.instance,
            'outpkts' => VAPI::Bindings::IntegerType.instance,
            'usmstatsnotintimewindows' => VAPI::Bindings::IntegerType.instance,
            'usmstatsunknownusernames' => VAPI::Bindings::IntegerType.instance,
            'usmstatsunknownengineids' => VAPI::Bindings::IntegerType.instance,
            'usmstatswrongdigests' => VAPI::Bindings::IntegerType.instance,
            'usmstatsdecryptionerrors' => VAPI::Bindings::IntegerType.instance,
            'inbadversions' => VAPI::Bindings::IntegerType.instance,
            'inbadcommunitynames' => VAPI::Bindings::IntegerType.instance,
            'inbadcommunityuses' => VAPI::Bindings::IntegerType.instance,
            'inasnparseerrs' => VAPI::Bindings::IntegerType.instance,
            'intoobigs' => VAPI::Bindings::IntegerType.instance,
            'innosuchnames' => VAPI::Bindings::IntegerType.instance,
            'inbadvalues' => VAPI::Bindings::IntegerType.instance,
            'ingenerrs' => VAPI::Bindings::IntegerType.instance,
            'outtoobigs' => VAPI::Bindings::IntegerType.instance,
            'outnosuchnames' => VAPI::Bindings::IntegerType.instance,
            'outbadvalues' => VAPI::Bindings::IntegerType.instance,
            'outgenerrs' => VAPI::Bindings::IntegerType.instance,
            'outtraps' => VAPI::Bindings::IntegerType.instance,
            'silentdrops' => VAPI::Bindings::IntegerType.instance,
            'avgvarbinds' => VAPI::Bindings::IntegerType.instance,
            'maxvarbinds' => VAPI::Bindings::IntegerType.instance,
        },
        SNMPStats,
        false,
        nil)
end