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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
# Condition
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | **string** | |
**Expression** | **string** | A Google CEL expression, expressed as a string. |
**Parameters** | Pointer to [**map[string]ConditionParamTypeRef**](ConditionParamTypeRef.md) | A map of parameter names to the parameter's defined type reference. | [optional]
**Metadata** | Pointer to [**ConditionMetadata**](ConditionMetadata.md) | | [optional]
## Methods
### NewCondition
`func NewCondition(name string, expression string, ) *Condition`
NewCondition instantiates a new Condition 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
### NewConditionWithDefaults
`func NewConditionWithDefaults() *Condition`
NewConditionWithDefaults instantiates a new Condition 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 *Condition) GetName() string`
GetName returns the Name field if non-nil, zero value otherwise.
### GetNameOk
`func (o *Condition) 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 *Condition) SetName(v string)`
SetName sets Name field to given value.
### GetExpression
`func (o *Condition) GetExpression() string`
GetExpression returns the Expression field if non-nil, zero value otherwise.
### GetExpressionOk
`func (o *Condition) GetExpressionOk() (*string, bool)`
GetExpressionOk returns a tuple with the Expression field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetExpression
`func (o *Condition) SetExpression(v string)`
SetExpression sets Expression field to given value.
### GetParameters
`func (o *Condition) GetParameters() map[string]ConditionParamTypeRef`
GetParameters returns the Parameters field if non-nil, zero value otherwise.
### GetParametersOk
`func (o *Condition) GetParametersOk() (*map[string]ConditionParamTypeRef, bool)`
GetParametersOk returns a tuple with the Parameters field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetParameters
`func (o *Condition) SetParameters(v map[string]ConditionParamTypeRef)`
SetParameters sets Parameters field to given value.
### HasParameters
`func (o *Condition) HasParameters() bool`
HasParameters returns a boolean if a field has been set.
### GetMetadata
`func (o *Condition) GetMetadata() ConditionMetadata`
GetMetadata returns the Metadata field if non-nil, zero value otherwise.
### GetMetadataOk
`func (o *Condition) GetMetadataOk() (*ConditionMetadata, bool)`
GetMetadataOk returns a tuple with the Metadata field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMetadata
`func (o *Condition) SetMetadata(v ConditionMetadata)`
SetMetadata sets Metadata field to given value.
### HasMetadata
`func (o *Condition) HasMetadata() bool`
HasMetadata returns a boolean if a field has been set.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|