Skip to content

Latest commit

 

History

History
124 lines (67 loc) · 3.53 KB

DiscoveredDependency.md

File metadata and controls

124 lines (67 loc) · 3.53 KB

DiscoveredDependency

Properties

Name Type Description Notes
Name Pointer to string The dependency name [optional]
Address string The dependency address
Type string The dependency type. One of the following: COM+ Application, IIS Anonymous Authentication, IIS Application Pool, Windows Scheduled Task, Windows Service
TaskFolder Pointer to string The dependency task folder - For Windows Scheduled Task [optional]

Methods

NewDiscoveredDependency

func NewDiscoveredDependency(address string, type_ string, ) *DiscoveredDependency

NewDiscoveredDependency instantiates a new DiscoveredDependency object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewDiscoveredDependencyWithDefaults

func NewDiscoveredDependencyWithDefaults() *DiscoveredDependency

NewDiscoveredDependencyWithDefaults instantiates a new DiscoveredDependency object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetName

func (o *DiscoveredDependency) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *DiscoveredDependency) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetName

func (o *DiscoveredDependency) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *DiscoveredDependency) HasName() bool

HasName returns a boolean if a field has been set.

GetAddress

func (o *DiscoveredDependency) GetAddress() string

GetAddress returns the Address field if non-nil, zero value otherwise.

GetAddressOk

func (o *DiscoveredDependency) GetAddressOk() (*string, bool)

GetAddressOk returns a tuple with the Address field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetAddress

func (o *DiscoveredDependency) SetAddress(v string)

SetAddress sets Address field to given value.

GetType

func (o *DiscoveredDependency) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *DiscoveredDependency) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetType

func (o *DiscoveredDependency) SetType(v string)

SetType sets Type field to given value.

GetTaskFolder

func (o *DiscoveredDependency) GetTaskFolder() string

GetTaskFolder returns the TaskFolder field if non-nil, zero value otherwise.

GetTaskFolderOk

func (o *DiscoveredDependency) GetTaskFolderOk() (*string, bool)

GetTaskFolderOk returns a tuple with the TaskFolder field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetTaskFolder

func (o *DiscoveredDependency) SetTaskFolder(v string)

SetTaskFolder sets TaskFolder field to given value.

HasTaskFolder

func (o *DiscoveredDependency) HasTaskFolder() bool

HasTaskFolder returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]