bunnyshell.com/sdk@v0.16.0/docs/ComponentEndpointItem.md (about) 1 # ComponentEndpointItem 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 **Endpoints** | Pointer to **[]string** | Service component URLs | [optional] [readonly] 10 **Environment** | Pointer to **string** | Environment identifier. | [optional] [readonly] 11 12 ## Methods 13 14 ### NewComponentEndpointItem 15 16 `func NewComponentEndpointItem() *ComponentEndpointItem` 17 18 NewComponentEndpointItem instantiates a new ComponentEndpointItem object 19 This constructor will assign default values to properties that have it defined, 20 and makes sure properties required by API are set, but the set of arguments 21 will change when the set of required properties is changed 22 23 ### NewComponentEndpointItemWithDefaults 24 25 `func NewComponentEndpointItemWithDefaults() *ComponentEndpointItem` 26 27 NewComponentEndpointItemWithDefaults instantiates a new ComponentEndpointItem object 28 This constructor will only assign default values to properties that have it defined, 29 but it doesn't guarantee that properties required by API are set 30 31 ### GetId 32 33 `func (o *ComponentEndpointItem) GetId() string` 34 35 GetId returns the Id field if non-nil, zero value otherwise. 36 37 ### GetIdOk 38 39 `func (o *ComponentEndpointItem) GetIdOk() (*string, bool)` 40 41 GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise 42 and a boolean to check if the value has been set. 43 44 ### SetId 45 46 `func (o *ComponentEndpointItem) SetId(v string)` 47 48 SetId sets Id field to given value. 49 50 ### HasId 51 52 `func (o *ComponentEndpointItem) HasId() bool` 53 54 HasId returns a boolean if a field has been set. 55 56 ### GetName 57 58 `func (o *ComponentEndpointItem) GetName() string` 59 60 GetName returns the Name field if non-nil, zero value otherwise. 61 62 ### GetNameOk 63 64 `func (o *ComponentEndpointItem) GetNameOk() (*string, bool)` 65 66 GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise 67 and a boolean to check if the value has been set. 68 69 ### SetName 70 71 `func (o *ComponentEndpointItem) SetName(v string)` 72 73 SetName sets Name field to given value. 74 75 ### HasName 76 77 `func (o *ComponentEndpointItem) HasName() bool` 78 79 HasName returns a boolean if a field has been set. 80 81 ### GetEndpoints 82 83 `func (o *ComponentEndpointItem) GetEndpoints() []string` 84 85 GetEndpoints returns the Endpoints field if non-nil, zero value otherwise. 86 87 ### GetEndpointsOk 88 89 `func (o *ComponentEndpointItem) GetEndpointsOk() (*[]string, bool)` 90 91 GetEndpointsOk returns a tuple with the Endpoints field if it's non-nil, zero value otherwise 92 and a boolean to check if the value has been set. 93 94 ### SetEndpoints 95 96 `func (o *ComponentEndpointItem) SetEndpoints(v []string)` 97 98 SetEndpoints sets Endpoints field to given value. 99 100 ### HasEndpoints 101 102 `func (o *ComponentEndpointItem) HasEndpoints() bool` 103 104 HasEndpoints returns a boolean if a field has been set. 105 106 ### GetEnvironment 107 108 `func (o *ComponentEndpointItem) GetEnvironment() string` 109 110 GetEnvironment returns the Environment field if non-nil, zero value otherwise. 111 112 ### GetEnvironmentOk 113 114 `func (o *ComponentEndpointItem) GetEnvironmentOk() (*string, bool)` 115 116 GetEnvironmentOk returns a tuple with the Environment field if it's non-nil, zero value otherwise 117 and a boolean to check if the value has been set. 118 119 ### SetEnvironment 120 121 `func (o *ComponentEndpointItem) SetEnvironment(v string)` 122 123 SetEnvironment sets Environment field to given value. 124 125 ### HasEnvironment 126 127 `func (o *ComponentEndpointItem) HasEnvironment() bool` 128 129 HasEnvironment returns a boolean if a field has been set. 130 131 132 [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 133 134