## Description
<!-- **Please link some issue here describing what you are trying to achieve.**
In case there is no issue present for your PR, please consider creating one.
At least please give us some description what you are trying to achieve and why your change is needed. -->
relates to #1234
## Checklist
- [ ] Issue was linked above
- [ ] Code format was applied: `make fmt`
- [ ] Examples were added / adjusted (see `examples/` directory)
- [x] Docs are up-to-date: `make generate-docs` (will be checked by CI)
- [ ] Unit tests got implemented or updated
- [ ] Acceptance tests got implemented or updated (see e.g. [here](f5f99d1709/stackit/internal/services/dns/dns_acc_test.go))
- [x] Unit tests are passing: `make test` (will be checked by CI)
- [x] No linter issues: `make lint` (will be checked by CI)
Reviewed-on: #4
Reviewed-by: Andre_Harms <andre.harms@stackit.cloud>
Co-authored-by: Marcel S. Henselin <marcel.henselin@stackit.cloud>
Co-committed-by: Marcel S. Henselin <marcel.henselin@stackit.cloud>
128 lines
3.9 KiB
Go
128 lines
3.9 KiB
Go
/*
|
|
STACKIT IaaS API
|
|
|
|
This API allows you to create and modify IaaS resources.
|
|
|
|
API version: 2beta1
|
|
*/
|
|
|
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
|
|
|
package iaasbeta
|
|
|
|
import (
|
|
"encoding/json"
|
|
)
|
|
|
|
// checks if the GetServerLog200Response type satisfies the MappedNullable interface at compile time
|
|
var _ MappedNullable = &GetServerLog200Response{}
|
|
|
|
/*
|
|
types and functions for output
|
|
*/
|
|
|
|
// isNotNullableString
|
|
type GetServerLog200ResponseGetOutputAttributeType = *string
|
|
|
|
func getGetServerLog200ResponseGetOutputAttributeTypeOk(arg GetServerLog200ResponseGetOutputAttributeType) (ret GetServerLog200ResponseGetOutputRetType, ok bool) {
|
|
if arg == nil {
|
|
return ret, false
|
|
}
|
|
return *arg, true
|
|
}
|
|
|
|
func setGetServerLog200ResponseGetOutputAttributeType(arg *GetServerLog200ResponseGetOutputAttributeType, val GetServerLog200ResponseGetOutputRetType) {
|
|
*arg = &val
|
|
}
|
|
|
|
type GetServerLog200ResponseGetOutputArgType = string
|
|
type GetServerLog200ResponseGetOutputRetType = string
|
|
|
|
// GetServerLog200Response struct for GetServerLog200Response
|
|
type GetServerLog200Response struct {
|
|
Output GetServerLog200ResponseGetOutputAttributeType `json:"output,omitempty"`
|
|
}
|
|
|
|
// NewGetServerLog200Response instantiates a new GetServerLog200Response 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
|
|
func NewGetServerLog200Response() *GetServerLog200Response {
|
|
this := GetServerLog200Response{}
|
|
return &this
|
|
}
|
|
|
|
// NewGetServerLog200ResponseWithDefaults instantiates a new GetServerLog200Response 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
|
|
func NewGetServerLog200ResponseWithDefaults() *GetServerLog200Response {
|
|
this := GetServerLog200Response{}
|
|
return &this
|
|
}
|
|
|
|
// GetOutput returns the Output field value if set, zero value otherwise.
|
|
func (o *GetServerLog200Response) GetOutput() (res GetServerLog200ResponseGetOutputRetType) {
|
|
res, _ = o.GetOutputOk()
|
|
return
|
|
}
|
|
|
|
// GetOutputOk returns a tuple with the Output field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
func (o *GetServerLog200Response) GetOutputOk() (ret GetServerLog200ResponseGetOutputRetType, ok bool) {
|
|
return getGetServerLog200ResponseGetOutputAttributeTypeOk(o.Output)
|
|
}
|
|
|
|
// HasOutput returns a boolean if a field has been set.
|
|
func (o *GetServerLog200Response) HasOutput() bool {
|
|
_, ok := o.GetOutputOk()
|
|
return ok
|
|
}
|
|
|
|
// SetOutput gets a reference to the given string and assigns it to the Output field.
|
|
func (o *GetServerLog200Response) SetOutput(v GetServerLog200ResponseGetOutputRetType) {
|
|
setGetServerLog200ResponseGetOutputAttributeType(&o.Output, v)
|
|
}
|
|
|
|
func (o GetServerLog200Response) ToMap() (map[string]interface{}, error) {
|
|
toSerialize := map[string]interface{}{}
|
|
if val, ok := getGetServerLog200ResponseGetOutputAttributeTypeOk(o.Output); ok {
|
|
toSerialize["Output"] = val
|
|
}
|
|
return toSerialize, nil
|
|
}
|
|
|
|
type NullableGetServerLog200Response struct {
|
|
value *GetServerLog200Response
|
|
isSet bool
|
|
}
|
|
|
|
func (v NullableGetServerLog200Response) Get() *GetServerLog200Response {
|
|
return v.value
|
|
}
|
|
|
|
func (v *NullableGetServerLog200Response) Set(val *GetServerLog200Response) {
|
|
v.value = val
|
|
v.isSet = true
|
|
}
|
|
|
|
func (v NullableGetServerLog200Response) IsSet() bool {
|
|
return v.isSet
|
|
}
|
|
|
|
func (v *NullableGetServerLog200Response) Unset() {
|
|
v.value = nil
|
|
v.isSet = false
|
|
}
|
|
|
|
func NewNullableGetServerLog200Response(val *GetServerLog200Response) *NullableGetServerLog200Response {
|
|
return &NullableGetServerLog200Response{value: val, isSet: true}
|
|
}
|
|
|
|
func (v NullableGetServerLog200Response) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(v.value)
|
|
}
|
|
|
|
func (v *NullableGetServerLog200Response) UnmarshalJSON(src []byte) error {
|
|
v.isSet = true
|
|
return json.Unmarshal(src, &v.value)
|
|
}
|