bunnyshell.com/sdk@v0.16.0/docs/ServiceComponentVariableItem.md (about)

     1  # ServiceComponentVariableItem
     2  
     3  ## Properties
     4  
     5  Name | Type | Description | Notes
     6  ------------ | ------------- | ------------- | -------------
     7  **Id** | Pointer to **string** | Component variable identifier. | [optional] [readonly] 
     8  **Name** | Pointer to **string** | Component variable name. | [optional] [readonly] 
     9  **Value** | Pointer to **NullableString** | Component variable value. | [optional] [readonly] 
    10  **Secret** | Pointer to **bool** | Component variable marked as secret. | [optional] [readonly] 
    11  **ServiceComponent** | Pointer to **string** | Service component identifier | [optional] [readonly] 
    12  **Project** | Pointer to **string** | Project identifier. | [optional] [readonly] 
    13  **Environment** | Pointer to **string** | Environment identifier. | [optional] [readonly] 
    14  **Organization** | Pointer to **string** | Organization identifier. | [optional] [readonly] 
    15  
    16  ## Methods
    17  
    18  ### NewServiceComponentVariableItem
    19  
    20  `func NewServiceComponentVariableItem() *ServiceComponentVariableItem`
    21  
    22  NewServiceComponentVariableItem instantiates a new ServiceComponentVariableItem 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  ### NewServiceComponentVariableItemWithDefaults
    28  
    29  `func NewServiceComponentVariableItemWithDefaults() *ServiceComponentVariableItem`
    30  
    31  NewServiceComponentVariableItemWithDefaults instantiates a new ServiceComponentVariableItem 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  ### GetId
    36  
    37  `func (o *ServiceComponentVariableItem) GetId() string`
    38  
    39  GetId returns the Id field if non-nil, zero value otherwise.
    40  
    41  ### GetIdOk
    42  
    43  `func (o *ServiceComponentVariableItem) GetIdOk() (*string, bool)`
    44  
    45  GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
    46  and a boolean to check if the value has been set.
    47  
    48  ### SetId
    49  
    50  `func (o *ServiceComponentVariableItem) SetId(v string)`
    51  
    52  SetId sets Id field to given value.
    53  
    54  ### HasId
    55  
    56  `func (o *ServiceComponentVariableItem) HasId() bool`
    57  
    58  HasId returns a boolean if a field has been set.
    59  
    60  ### GetName
    61  
    62  `func (o *ServiceComponentVariableItem) GetName() string`
    63  
    64  GetName returns the Name field if non-nil, zero value otherwise.
    65  
    66  ### GetNameOk
    67  
    68  `func (o *ServiceComponentVariableItem) GetNameOk() (*string, bool)`
    69  
    70  GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise
    71  and a boolean to check if the value has been set.
    72  
    73  ### SetName
    74  
    75  `func (o *ServiceComponentVariableItem) SetName(v string)`
    76  
    77  SetName sets Name field to given value.
    78  
    79  ### HasName
    80  
    81  `func (o *ServiceComponentVariableItem) HasName() bool`
    82  
    83  HasName returns a boolean if a field has been set.
    84  
    85  ### GetValue
    86  
    87  `func (o *ServiceComponentVariableItem) GetValue() string`
    88  
    89  GetValue returns the Value field if non-nil, zero value otherwise.
    90  
    91  ### GetValueOk
    92  
    93  `func (o *ServiceComponentVariableItem) GetValueOk() (*string, bool)`
    94  
    95  GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise
    96  and a boolean to check if the value has been set.
    97  
    98  ### SetValue
    99  
   100  `func (o *ServiceComponentVariableItem) SetValue(v string)`
   101  
   102  SetValue sets Value field to given value.
   103  
   104  ### HasValue
   105  
   106  `func (o *ServiceComponentVariableItem) HasValue() bool`
   107  
   108  HasValue returns a boolean if a field has been set.
   109  
   110  ### SetValueNil
   111  
   112  `func (o *ServiceComponentVariableItem) SetValueNil(b bool)`
   113  
   114   SetValueNil sets the value for Value to be an explicit nil
   115  
   116  ### UnsetValue
   117  `func (o *ServiceComponentVariableItem) UnsetValue()`
   118  
   119  UnsetValue ensures that no value is present for Value, not even an explicit nil
   120  ### GetSecret
   121  
   122  `func (o *ServiceComponentVariableItem) GetSecret() bool`
   123  
   124  GetSecret returns the Secret field if non-nil, zero value otherwise.
   125  
   126  ### GetSecretOk
   127  
   128  `func (o *ServiceComponentVariableItem) GetSecretOk() (*bool, bool)`
   129  
   130  GetSecretOk returns a tuple with the Secret field if it's non-nil, zero value otherwise
   131  and a boolean to check if the value has been set.
   132  
   133  ### SetSecret
   134  
   135  `func (o *ServiceComponentVariableItem) SetSecret(v bool)`
   136  
   137  SetSecret sets Secret field to given value.
   138  
   139  ### HasSecret
   140  
   141  `func (o *ServiceComponentVariableItem) HasSecret() bool`
   142  
   143  HasSecret returns a boolean if a field has been set.
   144  
   145  ### GetServiceComponent
   146  
   147  `func (o *ServiceComponentVariableItem) GetServiceComponent() string`
   148  
   149  GetServiceComponent returns the ServiceComponent field if non-nil, zero value otherwise.
   150  
   151  ### GetServiceComponentOk
   152  
   153  `func (o *ServiceComponentVariableItem) GetServiceComponentOk() (*string, bool)`
   154  
   155  GetServiceComponentOk returns a tuple with the ServiceComponent field if it's non-nil, zero value otherwise
   156  and a boolean to check if the value has been set.
   157  
   158  ### SetServiceComponent
   159  
   160  `func (o *ServiceComponentVariableItem) SetServiceComponent(v string)`
   161  
   162  SetServiceComponent sets ServiceComponent field to given value.
   163  
   164  ### HasServiceComponent
   165  
   166  `func (o *ServiceComponentVariableItem) HasServiceComponent() bool`
   167  
   168  HasServiceComponent returns a boolean if a field has been set.
   169  
   170  ### GetProject
   171  
   172  `func (o *ServiceComponentVariableItem) GetProject() string`
   173  
   174  GetProject returns the Project field if non-nil, zero value otherwise.
   175  
   176  ### GetProjectOk
   177  
   178  `func (o *ServiceComponentVariableItem) GetProjectOk() (*string, bool)`
   179  
   180  GetProjectOk returns a tuple with the Project field if it's non-nil, zero value otherwise
   181  and a boolean to check if the value has been set.
   182  
   183  ### SetProject
   184  
   185  `func (o *ServiceComponentVariableItem) SetProject(v string)`
   186  
   187  SetProject sets Project field to given value.
   188  
   189  ### HasProject
   190  
   191  `func (o *ServiceComponentVariableItem) HasProject() bool`
   192  
   193  HasProject returns a boolean if a field has been set.
   194  
   195  ### GetEnvironment
   196  
   197  `func (o *ServiceComponentVariableItem) GetEnvironment() string`
   198  
   199  GetEnvironment returns the Environment field if non-nil, zero value otherwise.
   200  
   201  ### GetEnvironmentOk
   202  
   203  `func (o *ServiceComponentVariableItem) GetEnvironmentOk() (*string, bool)`
   204  
   205  GetEnvironmentOk returns a tuple with the Environment field if it's non-nil, zero value otherwise
   206  and a boolean to check if the value has been set.
   207  
   208  ### SetEnvironment
   209  
   210  `func (o *ServiceComponentVariableItem) SetEnvironment(v string)`
   211  
   212  SetEnvironment sets Environment field to given value.
   213  
   214  ### HasEnvironment
   215  
   216  `func (o *ServiceComponentVariableItem) HasEnvironment() bool`
   217  
   218  HasEnvironment returns a boolean if a field has been set.
   219  
   220  ### GetOrganization
   221  
   222  `func (o *ServiceComponentVariableItem) GetOrganization() string`
   223  
   224  GetOrganization returns the Organization field if non-nil, zero value otherwise.
   225  
   226  ### GetOrganizationOk
   227  
   228  `func (o *ServiceComponentVariableItem) GetOrganizationOk() (*string, bool)`
   229  
   230  GetOrganizationOk returns a tuple with the Organization field if it's non-nil, zero value otherwise
   231  and a boolean to check if the value has been set.
   232  
   233  ### SetOrganization
   234  
   235  `func (o *ServiceComponentVariableItem) SetOrganization(v string)`
   236  
   237  SetOrganization sets Organization field to given value.
   238  
   239  ### HasOrganization
   240  
   241  `func (o *ServiceComponentVariableItem) HasOrganization() bool`
   242  
   243  HasOrganization returns a boolean if a field has been set.
   244  
   245  
   246  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
   247  
   248