Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 3.9 KB

RouteTableEntrySimpleExpression.md

File metadata and controls

108 lines (59 loc) · 3.9 KB

RouteTableEntrySimpleExpression

Properties

Name Type Description Notes
Property Pointer to string Possible field names to use on filters: * `/type` - Route table entry type * `/prefix` - Route table entry prefix * `/nextHop` - Route table entry nextHop * `/state` - Route table entry state * `/_*` - all-category search [optional]
Operator Pointer to string Possible operators to use on filters: * `=` - equal * `!=` - not equal * `>` - greater than * `>=` - greater than or equal to * `<` - less than * `<=` - less than or equal to * `[NOT] BETWEEN` - (not) between * `[NOT] LIKE` - (not) like * `[NOT] IN` - (not) in * `~*` - case-insensitive like [optional]
Values Pointer to []string [optional]

Methods

NewRouteTableEntrySimpleExpression

func NewRouteTableEntrySimpleExpression() *RouteTableEntrySimpleExpression

NewRouteTableEntrySimpleExpression instantiates a new RouteTableEntrySimpleExpression 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

NewRouteTableEntrySimpleExpressionWithDefaults

func NewRouteTableEntrySimpleExpressionWithDefaults() *RouteTableEntrySimpleExpression

NewRouteTableEntrySimpleExpressionWithDefaults instantiates a new RouteTableEntrySimpleExpression 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

GetProperty

func (o *RouteTableEntrySimpleExpression) GetProperty() string

GetProperty returns the Property field if non-nil, zero value otherwise.

GetPropertyOk

func (o *RouteTableEntrySimpleExpression) GetPropertyOk() (*string, bool)

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

SetProperty

func (o *RouteTableEntrySimpleExpression) SetProperty(v string)

SetProperty sets Property field to given value.

HasProperty

func (o *RouteTableEntrySimpleExpression) HasProperty() bool

HasProperty returns a boolean if a field has been set.

GetOperator

func (o *RouteTableEntrySimpleExpression) GetOperator() string

GetOperator returns the Operator field if non-nil, zero value otherwise.

GetOperatorOk

func (o *RouteTableEntrySimpleExpression) GetOperatorOk() (*string, bool)

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

SetOperator

func (o *RouteTableEntrySimpleExpression) SetOperator(v string)

SetOperator sets Operator field to given value.

HasOperator

func (o *RouteTableEntrySimpleExpression) HasOperator() bool

HasOperator returns a boolean if a field has been set.

GetValues

func (o *RouteTableEntrySimpleExpression) GetValues() []string

GetValues returns the Values field if non-nil, zero value otherwise.

GetValuesOk

func (o *RouteTableEntrySimpleExpression) GetValuesOk() (*[]string, bool)

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

SetValues

func (o *RouteTableEntrySimpleExpression) SetValues(v []string)

SetValues sets Values field to given value.

HasValues

func (o *RouteTableEntrySimpleExpression) HasValues() bool

HasValues returns a boolean if a field has been set.

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