Skip to content
This repository was archived by the owner on Mar 9, 2026. It is now read-only.

Latest commit

 

History

History
182 lines (97 loc) · 5.27 KB

File metadata and controls

182 lines (97 loc) · 5.27 KB

Filter

Properties

Name Type Description Notes
CreatedAt string The UTC time at which the Filter was created.
DataDestinationsUsingFilter []string The list of DataDestination ResourceIds which use this Filter.
DataSourceId string The DataSource ResourceId which this Filter will read from.
ResourceId string The Ambar resourceId corresponding to this Filter.
Description Pointer to string The description of the Filter given when it was created. [optional]
FilterContents string The contents of the Filter in Ambar filter DSL.
State string The ResourceState of this Filter. For possible values see ResourceState in our developer docs.

Methods

NewFilter

func NewFilter(createdAt string, dataDestinationsUsingFilter []string, dataSourceId string, resourceId string, filterContents string, state string, ) *Filter

NewFilter instantiates a new Filter 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

NewFilterWithDefaults

func NewFilterWithDefaults() *Filter

NewFilterWithDefaults instantiates a new Filter 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

GetCreatedAt

func (o *Filter) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.

GetCreatedAtOk

func (o *Filter) GetCreatedAtOk() (*string, bool)

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

SetCreatedAt

func (o *Filter) SetCreatedAt(v string)

SetCreatedAt sets CreatedAt field to given value.

GetDataDestinationsUsingFilter

func (o *Filter) GetDataDestinationsUsingFilter() []string

GetDataDestinationsUsingFilter returns the DataDestinationsUsingFilter field if non-nil, zero value otherwise.

GetDataDestinationsUsingFilterOk

func (o *Filter) GetDataDestinationsUsingFilterOk() (*[]string, bool)

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

SetDataDestinationsUsingFilter

func (o *Filter) SetDataDestinationsUsingFilter(v []string)

SetDataDestinationsUsingFilter sets DataDestinationsUsingFilter field to given value.

GetDataSourceId

func (o *Filter) GetDataSourceId() string

GetDataSourceId returns the DataSourceId field if non-nil, zero value otherwise.

GetDataSourceIdOk

func (o *Filter) GetDataSourceIdOk() (*string, bool)

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

SetDataSourceId

func (o *Filter) SetDataSourceId(v string)

SetDataSourceId sets DataSourceId field to given value.

GetResourceId

func (o *Filter) GetResourceId() string

GetResourceId returns the ResourceId field if non-nil, zero value otherwise.

GetResourceIdOk

func (o *Filter) GetResourceIdOk() (*string, bool)

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

SetResourceId

func (o *Filter) SetResourceId(v string)

SetResourceId sets ResourceId field to given value.

GetDescription

func (o *Filter) GetDescription() string

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

GetDescriptionOk

func (o *Filter) 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 *Filter) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *Filter) HasDescription() bool

HasDescription returns a boolean if a field has been set.

GetFilterContents

func (o *Filter) GetFilterContents() string

GetFilterContents returns the FilterContents field if non-nil, zero value otherwise.

GetFilterContentsOk

func (o *Filter) GetFilterContentsOk() (*string, bool)

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

SetFilterContents

func (o *Filter) SetFilterContents(v string)

SetFilterContents sets FilterContents field to given value.

GetState

func (o *Filter) GetState() string

GetState returns the State field if non-nil, zero value otherwise.

GetStateOk

func (o *Filter) GetStateOk() (*string, bool)

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

SetState

func (o *Filter) SetState(v string)

SetState sets State field to given value.

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