Skip to content

Latest commit

 

History

History
186 lines (101 loc) · 5.01 KB

ThreatFeed.md

File metadata and controls

186 lines (101 loc) · 5.01 KB

ThreatFeed

Properties

Name Type Description Notes
ConfidenceLevel Pointer to string The Confidence Level of the Feed. [optional] [readonly]
Description Pointer to string The brief description for the thread feed. [optional] [readonly]
Key Pointer to string The TSIG key of the threat feed. [optional] [readonly]
Name Pointer to string The name of the thread feed. [optional] [readonly]
Source Pointer to ThreatFeedSource The source of the threat feed. [optional] [readonly] [default to THREATFEEDSOURCE_INFOBLOX]
ThreatLevel Pointer to string The Threat Level of the Feed. [optional] [readonly]

Methods

NewThreatFeed

func NewThreatFeed() *ThreatFeed

NewThreatFeed instantiates a new ThreatFeed 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

NewThreatFeedWithDefaults

func NewThreatFeedWithDefaults() *ThreatFeed

NewThreatFeedWithDefaults instantiates a new ThreatFeed 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

GetConfidenceLevel

func (o *ThreatFeed) GetConfidenceLevel() string

GetConfidenceLevel returns the ConfidenceLevel field if non-nil, zero value otherwise.

GetConfidenceLevelOk

func (o *ThreatFeed) GetConfidenceLevelOk() (*string, bool)

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

SetConfidenceLevel

func (o *ThreatFeed) SetConfidenceLevel(v string)

SetConfidenceLevel sets ConfidenceLevel field to given value.

HasConfidenceLevel

func (o *ThreatFeed) HasConfidenceLevel() bool

HasConfidenceLevel returns a boolean if a field has been set.

GetDescription

func (o *ThreatFeed) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *ThreatFeed) GetDescriptionOk() (*string, bool)

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

SetDescription

func (o *ThreatFeed) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *ThreatFeed) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetKey

func (o *ThreatFeed) GetKey() string

GetKey returns the Key field if non-nil, zero value otherwise.

GetKeyOk

func (o *ThreatFeed) GetKeyOk() (*string, bool)

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

SetKey

func (o *ThreatFeed) SetKey(v string)

SetKey sets Key field to given value.

HasKey

func (o *ThreatFeed) HasKey() bool

HasKey returns a boolean if a field has been set.

GetName

func (o *ThreatFeed) GetName() string

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

GetNameOk

func (o *ThreatFeed) 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 *ThreatFeed) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *ThreatFeed) HasName() bool

HasName returns a boolean if a field has been set.

GetSource

func (o *ThreatFeed) GetSource() ThreatFeedSource

GetSource returns the Source field if non-nil, zero value otherwise.

GetSourceOk

func (o *ThreatFeed) GetSourceOk() (*ThreatFeedSource, bool)

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

SetSource

func (o *ThreatFeed) SetSource(v ThreatFeedSource)

SetSource sets Source field to given value.

HasSource

func (o *ThreatFeed) HasSource() bool

HasSource returns a boolean if a field has been set.

GetThreatLevel

func (o *ThreatFeed) GetThreatLevel() string

GetThreatLevel returns the ThreatLevel field if non-nil, zero value otherwise.

GetThreatLevelOk

func (o *ThreatFeed) GetThreatLevelOk() (*string, bool)

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

SetThreatLevel

func (o *ThreatFeed) SetThreatLevel(v string)

SetThreatLevel sets ThreatLevel field to given value.

HasThreatLevel

func (o *ThreatFeed) HasThreatLevel() bool

HasThreatLevel returns a boolean if a field has been set.

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