1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
# Copyright (c) 2006-2025 Broadcom. All Rights Reserved.
# Broadcom Confidential. The term "Broadcom" refers to Broadcom Inc.
# and/or its subsidiaries.
# ******* WARNING - AUTO GENERATED CODE - DO NOT EDIT *******
from typing import ClassVar
from typing import NoReturn
from typing import Optional
from pyVmomi.VmomiSupport import Enum
from pyVmomi.VmomiSupport import ManagedObject
from pyVmomi.vim import KeyValue
from pyVmomi.vmodl import DynamicData
class SnmpSystem(ManagedObject):
class SnmpConfigSpec(DynamicData):
class Destination(DynamicData):
hostName: str
port: int
community: str
enabled: Optional[bool] = None
port: Optional[int] = None
readOnlyCommunities: list[str] = []
trapTargets: list[Destination] = []
option: list[KeyValue] = []
class AgentLimits(DynamicData):
class Capability(Enum):
COMPLETE: ClassVar['Capability'] = 'COMPLETE'
DIAGNOSTICS: ClassVar['Capability'] = 'DIAGNOSTICS'
CONFIGURATION: ClassVar['Capability'] = 'CONFIGURATION'
maxReadOnlyCommunities: int
maxTrapDestinations: int
maxCommunityLength: int
maxBufferSize: int
capability: Capability
@property
def configuration(self) -> SnmpConfigSpec: ...
@property
def limits(self) -> AgentLimits: ...
def ReconfigureSnmpAgent(self, spec: SnmpConfigSpec) -> NoReturn: ...
def SendTestNotification(self) -> NoReturn: ...
|