bunnyshell.com/sdk@v0.16.0/docs/ComponentCollection.md (about) 1 # ComponentCollection 2 3 ## Properties 4 5 Name | Type | Description | Notes 6 ------------ | ------------- | ------------- | ------------- 7 **Id** | Pointer to **string** | Service component identifier | [optional] [readonly] 8 **Name** | Pointer to **string** | Service component name | [optional] [readonly] 9 **ClusterStatus** | Pointer to **string** | Service component cluster status | [optional] [readonly] 10 **OperationStatus** | Pointer to **string** | Service component operation status | [optional] [readonly] 11 **Environment** | Pointer to **string** | Environment identifier. | [optional] [readonly] 12 13 ## Methods 14 15 ### NewComponentCollection 16 17 `func NewComponentCollection() *ComponentCollection` 18 19 NewComponentCollection instantiates a new ComponentCollection object 20 This constructor will assign default values to properties that have it defined, 21 and makes sure properties required by API are set, but the set of arguments 22 will change when the set of required properties is changed 23 24 ### NewComponentCollectionWithDefaults 25 26 `func NewComponentCollectionWithDefaults() *ComponentCollection` 27 28 NewComponentCollectionWithDefaults instantiates a new ComponentCollection object 29 This constructor will only assign default values to properties that have it defined, 30 but it doesn't guarantee that properties required by API are set 31 32 ### GetId 33 34 `func (o *ComponentCollection) GetId() string` 35 36 GetId returns the Id field if non-nil, zero value otherwise. 37 38 ### GetIdOk 39 40 `func (o *ComponentCollection) GetIdOk() (*string, bool)` 41 42 GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise 43 and a boolean to check if the value has been set. 44 45 ### SetId 46 47 `func (o *ComponentCollection) SetId(v string)` 48 49 SetId sets Id field to given value. 50 51 ### HasId 52 53 `func (o *ComponentCollection) HasId() bool` 54 55 HasId returns a boolean if a field has been set. 56 57 ### GetName 58 59 `func (o *ComponentCollection) GetName() string` 60 61 GetName returns the Name field if non-nil, zero value otherwise. 62 63 ### GetNameOk 64 65 `func (o *ComponentCollection) GetNameOk() (*string, bool)` 66 67 GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise 68 and a boolean to check if the value has been set. 69 70 ### SetName 71 72 `func (o *ComponentCollection) SetName(v string)` 73 74 SetName sets Name field to given value. 75 76 ### HasName 77 78 `func (o *ComponentCollection) HasName() bool` 79 80 HasName returns a boolean if a field has been set. 81 82 ### GetClusterStatus 83 84 `func (o *ComponentCollection) GetClusterStatus() string` 85 86 GetClusterStatus returns the ClusterStatus field if non-nil, zero value otherwise. 87 88 ### GetClusterStatusOk 89 90 `func (o *ComponentCollection) GetClusterStatusOk() (*string, bool)` 91 92 GetClusterStatusOk returns a tuple with the ClusterStatus field if it's non-nil, zero value otherwise 93 and a boolean to check if the value has been set. 94 95 ### SetClusterStatus 96 97 `func (o *ComponentCollection) SetClusterStatus(v string)` 98 99 SetClusterStatus sets ClusterStatus field to given value. 100 101 ### HasClusterStatus 102 103 `func (o *ComponentCollection) HasClusterStatus() bool` 104 105 HasClusterStatus returns a boolean if a field has been set. 106 107 ### GetOperationStatus 108 109 `func (o *ComponentCollection) GetOperationStatus() string` 110 111 GetOperationStatus returns the OperationStatus field if non-nil, zero value otherwise. 112 113 ### GetOperationStatusOk 114 115 `func (o *ComponentCollection) GetOperationStatusOk() (*string, bool)` 116 117 GetOperationStatusOk returns a tuple with the OperationStatus field if it's non-nil, zero value otherwise 118 and a boolean to check if the value has been set. 119 120 ### SetOperationStatus 121 122 `func (o *ComponentCollection) SetOperationStatus(v string)` 123 124 SetOperationStatus sets OperationStatus field to given value. 125 126 ### HasOperationStatus 127 128 `func (o *ComponentCollection) HasOperationStatus() bool` 129 130 HasOperationStatus returns a boolean if a field has been set. 131 132 ### GetEnvironment 133 134 `func (o *ComponentCollection) GetEnvironment() string` 135 136 GetEnvironment returns the Environment field if non-nil, zero value otherwise. 137 138 ### GetEnvironmentOk 139 140 `func (o *ComponentCollection) GetEnvironmentOk() (*string, bool)` 141 142 GetEnvironmentOk returns a tuple with the Environment field if it's non-nil, zero value otherwise 143 and a boolean to check if the value has been set. 144 145 ### SetEnvironment 146 147 `func (o *ComponentCollection) SetEnvironment(v string)` 148 149 SetEnvironment sets Environment field to given value. 150 151 ### HasEnvironment 152 153 `func (o *ComponentCollection) HasEnvironment() bool` 154 155 HasEnvironment returns a boolean if a field has been set. 156 157 158 [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 159 160