bunnyshell.com/sdk@v0.16.0/docs/BuildSettingsItem.md (about) 1 # BuildSettingsItem 2 3 ## Properties 4 5 Name | Type | Description | Notes 6 ------------ | ------------- | ------------- | ------------- 7 **UseManagedRegistry** | Pointer to **bool** | Use the managed container registry. | [optional] 8 **RegistryIntegration** | Pointer to **NullableString** | The Container Registry used for the built images. | [optional] 9 **UseManagedCluster** | Pointer to **bool** | Use the managed builds Cluster. | [optional] 10 **KubernetesIntegration** | Pointer to **NullableString** | The Kubernetes integration cluster used for the image builds. | [optional] 11 **Cpu** | Pointer to **NullableString** | The CPU allocated for the build runner. | [optional] 12 **Memory** | Pointer to **NullableInt32** | The memory allocated for the build runner. | [optional] 13 **LastStatus** | Pointer to **NullableString** | The latest status of the build settings. | [optional] 14 **LastError** | Pointer to **NullableString** | The latest status of the build settings. | [optional] 15 16 ## Methods 17 18 ### NewBuildSettingsItem 19 20 `func NewBuildSettingsItem() *BuildSettingsItem` 21 22 NewBuildSettingsItem instantiates a new BuildSettingsItem object 23 This constructor will assign default values to properties that have it defined, 24 and makes sure properties required by API are set, but the set of arguments 25 will change when the set of required properties is changed 26 27 ### NewBuildSettingsItemWithDefaults 28 29 `func NewBuildSettingsItemWithDefaults() *BuildSettingsItem` 30 31 NewBuildSettingsItemWithDefaults instantiates a new BuildSettingsItem object 32 This constructor will only assign default values to properties that have it defined, 33 but it doesn't guarantee that properties required by API are set 34 35 ### GetUseManagedRegistry 36 37 `func (o *BuildSettingsItem) GetUseManagedRegistry() bool` 38 39 GetUseManagedRegistry returns the UseManagedRegistry field if non-nil, zero value otherwise. 40 41 ### GetUseManagedRegistryOk 42 43 `func (o *BuildSettingsItem) GetUseManagedRegistryOk() (*bool, bool)` 44 45 GetUseManagedRegistryOk returns a tuple with the UseManagedRegistry field if it's non-nil, zero value otherwise 46 and a boolean to check if the value has been set. 47 48 ### SetUseManagedRegistry 49 50 `func (o *BuildSettingsItem) SetUseManagedRegistry(v bool)` 51 52 SetUseManagedRegistry sets UseManagedRegistry field to given value. 53 54 ### HasUseManagedRegistry 55 56 `func (o *BuildSettingsItem) HasUseManagedRegistry() bool` 57 58 HasUseManagedRegistry returns a boolean if a field has been set. 59 60 ### GetRegistryIntegration 61 62 `func (o *BuildSettingsItem) GetRegistryIntegration() string` 63 64 GetRegistryIntegration returns the RegistryIntegration field if non-nil, zero value otherwise. 65 66 ### GetRegistryIntegrationOk 67 68 `func (o *BuildSettingsItem) GetRegistryIntegrationOk() (*string, bool)` 69 70 GetRegistryIntegrationOk returns a tuple with the RegistryIntegration field if it's non-nil, zero value otherwise 71 and a boolean to check if the value has been set. 72 73 ### SetRegistryIntegration 74 75 `func (o *BuildSettingsItem) SetRegistryIntegration(v string)` 76 77 SetRegistryIntegration sets RegistryIntegration field to given value. 78 79 ### HasRegistryIntegration 80 81 `func (o *BuildSettingsItem) HasRegistryIntegration() bool` 82 83 HasRegistryIntegration returns a boolean if a field has been set. 84 85 ### SetRegistryIntegrationNil 86 87 `func (o *BuildSettingsItem) SetRegistryIntegrationNil(b bool)` 88 89 SetRegistryIntegrationNil sets the value for RegistryIntegration to be an explicit nil 90 91 ### UnsetRegistryIntegration 92 `func (o *BuildSettingsItem) UnsetRegistryIntegration()` 93 94 UnsetRegistryIntegration ensures that no value is present for RegistryIntegration, not even an explicit nil 95 ### GetUseManagedCluster 96 97 `func (o *BuildSettingsItem) GetUseManagedCluster() bool` 98 99 GetUseManagedCluster returns the UseManagedCluster field if non-nil, zero value otherwise. 100 101 ### GetUseManagedClusterOk 102 103 `func (o *BuildSettingsItem) GetUseManagedClusterOk() (*bool, bool)` 104 105 GetUseManagedClusterOk returns a tuple with the UseManagedCluster field if it's non-nil, zero value otherwise 106 and a boolean to check if the value has been set. 107 108 ### SetUseManagedCluster 109 110 `func (o *BuildSettingsItem) SetUseManagedCluster(v bool)` 111 112 SetUseManagedCluster sets UseManagedCluster field to given value. 113 114 ### HasUseManagedCluster 115 116 `func (o *BuildSettingsItem) HasUseManagedCluster() bool` 117 118 HasUseManagedCluster returns a boolean if a field has been set. 119 120 ### GetKubernetesIntegration 121 122 `func (o *BuildSettingsItem) GetKubernetesIntegration() string` 123 124 GetKubernetesIntegration returns the KubernetesIntegration field if non-nil, zero value otherwise. 125 126 ### GetKubernetesIntegrationOk 127 128 `func (o *BuildSettingsItem) GetKubernetesIntegrationOk() (*string, bool)` 129 130 GetKubernetesIntegrationOk returns a tuple with the KubernetesIntegration field if it's non-nil, zero value otherwise 131 and a boolean to check if the value has been set. 132 133 ### SetKubernetesIntegration 134 135 `func (o *BuildSettingsItem) SetKubernetesIntegration(v string)` 136 137 SetKubernetesIntegration sets KubernetesIntegration field to given value. 138 139 ### HasKubernetesIntegration 140 141 `func (o *BuildSettingsItem) HasKubernetesIntegration() bool` 142 143 HasKubernetesIntegration returns a boolean if a field has been set. 144 145 ### SetKubernetesIntegrationNil 146 147 `func (o *BuildSettingsItem) SetKubernetesIntegrationNil(b bool)` 148 149 SetKubernetesIntegrationNil sets the value for KubernetesIntegration to be an explicit nil 150 151 ### UnsetKubernetesIntegration 152 `func (o *BuildSettingsItem) UnsetKubernetesIntegration()` 153 154 UnsetKubernetesIntegration ensures that no value is present for KubernetesIntegration, not even an explicit nil 155 ### GetCpu 156 157 `func (o *BuildSettingsItem) GetCpu() string` 158 159 GetCpu returns the Cpu field if non-nil, zero value otherwise. 160 161 ### GetCpuOk 162 163 `func (o *BuildSettingsItem) GetCpuOk() (*string, bool)` 164 165 GetCpuOk returns a tuple with the Cpu field if it's non-nil, zero value otherwise 166 and a boolean to check if the value has been set. 167 168 ### SetCpu 169 170 `func (o *BuildSettingsItem) SetCpu(v string)` 171 172 SetCpu sets Cpu field to given value. 173 174 ### HasCpu 175 176 `func (o *BuildSettingsItem) HasCpu() bool` 177 178 HasCpu returns a boolean if a field has been set. 179 180 ### SetCpuNil 181 182 `func (o *BuildSettingsItem) SetCpuNil(b bool)` 183 184 SetCpuNil sets the value for Cpu to be an explicit nil 185 186 ### UnsetCpu 187 `func (o *BuildSettingsItem) UnsetCpu()` 188 189 UnsetCpu ensures that no value is present for Cpu, not even an explicit nil 190 ### GetMemory 191 192 `func (o *BuildSettingsItem) GetMemory() int32` 193 194 GetMemory returns the Memory field if non-nil, zero value otherwise. 195 196 ### GetMemoryOk 197 198 `func (o *BuildSettingsItem) GetMemoryOk() (*int32, bool)` 199 200 GetMemoryOk returns a tuple with the Memory field if it's non-nil, zero value otherwise 201 and a boolean to check if the value has been set. 202 203 ### SetMemory 204 205 `func (o *BuildSettingsItem) SetMemory(v int32)` 206 207 SetMemory sets Memory field to given value. 208 209 ### HasMemory 210 211 `func (o *BuildSettingsItem) HasMemory() bool` 212 213 HasMemory returns a boolean if a field has been set. 214 215 ### SetMemoryNil 216 217 `func (o *BuildSettingsItem) SetMemoryNil(b bool)` 218 219 SetMemoryNil sets the value for Memory to be an explicit nil 220 221 ### UnsetMemory 222 `func (o *BuildSettingsItem) UnsetMemory()` 223 224 UnsetMemory ensures that no value is present for Memory, not even an explicit nil 225 ### GetLastStatus 226 227 `func (o *BuildSettingsItem) GetLastStatus() string` 228 229 GetLastStatus returns the LastStatus field if non-nil, zero value otherwise. 230 231 ### GetLastStatusOk 232 233 `func (o *BuildSettingsItem) GetLastStatusOk() (*string, bool)` 234 235 GetLastStatusOk returns a tuple with the LastStatus field if it's non-nil, zero value otherwise 236 and a boolean to check if the value has been set. 237 238 ### SetLastStatus 239 240 `func (o *BuildSettingsItem) SetLastStatus(v string)` 241 242 SetLastStatus sets LastStatus field to given value. 243 244 ### HasLastStatus 245 246 `func (o *BuildSettingsItem) HasLastStatus() bool` 247 248 HasLastStatus returns a boolean if a field has been set. 249 250 ### SetLastStatusNil 251 252 `func (o *BuildSettingsItem) SetLastStatusNil(b bool)` 253 254 SetLastStatusNil sets the value for LastStatus to be an explicit nil 255 256 ### UnsetLastStatus 257 `func (o *BuildSettingsItem) UnsetLastStatus()` 258 259 UnsetLastStatus ensures that no value is present for LastStatus, not even an explicit nil 260 ### GetLastError 261 262 `func (o *BuildSettingsItem) GetLastError() string` 263 264 GetLastError returns the LastError field if non-nil, zero value otherwise. 265 266 ### GetLastErrorOk 267 268 `func (o *BuildSettingsItem) GetLastErrorOk() (*string, bool)` 269 270 GetLastErrorOk returns a tuple with the LastError field if it's non-nil, zero value otherwise 271 and a boolean to check if the value has been set. 272 273 ### SetLastError 274 275 `func (o *BuildSettingsItem) SetLastError(v string)` 276 277 SetLastError sets LastError field to given value. 278 279 ### HasLastError 280 281 `func (o *BuildSettingsItem) HasLastError() bool` 282 283 HasLastError returns a boolean if a field has been set. 284 285 ### SetLastErrorNil 286 287 `func (o *BuildSettingsItem) SetLastErrorNil(b bool)` 288 289 SetLastErrorNil sets the value for LastError to be an explicit nil 290 291 ### UnsetLastError 292 `func (o *BuildSettingsItem) UnsetLastError()` 293 294 UnsetLastError ensures that no value is present for LastError, not even an explicit nil 295 296 [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 297 298