chore: initial push to be able to work together
This commit is contained in:
parent
81e8d48cf6
commit
30070d8470
263 changed files with 45437 additions and 2 deletions
169
pkg/sqlserverflexalpha/model_list_instances_response.go
Normal file
169
pkg/sqlserverflexalpha/model_list_instances_response.go
Normal file
|
|
@ -0,0 +1,169 @@
|
|||
/*
|
||||
STACKIT MSSQL Service API
|
||||
|
||||
This is the documentation for the STACKIT MSSQL service
|
||||
|
||||
API version: 3alpha1
|
||||
*/
|
||||
|
||||
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
||||
|
||||
package sqlserverflexalpha
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
)
|
||||
|
||||
// checks if the ListInstancesResponse type satisfies the MappedNullable interface at compile time
|
||||
var _ MappedNullable = &ListInstancesResponse{}
|
||||
|
||||
/*
|
||||
types and functions for instances
|
||||
*/
|
||||
|
||||
// isArray
|
||||
type ListInstancesResponseGetInstancesAttributeType = *[]ListInstance
|
||||
type ListInstancesResponseGetInstancesArgType = []ListInstance
|
||||
type ListInstancesResponseGetInstancesRetType = []ListInstance
|
||||
|
||||
func getListInstancesResponseGetInstancesAttributeTypeOk(arg ListInstancesResponseGetInstancesAttributeType) (ret ListInstancesResponseGetInstancesRetType, ok bool) {
|
||||
if arg == nil {
|
||||
return ret, false
|
||||
}
|
||||
return *arg, true
|
||||
}
|
||||
|
||||
func setListInstancesResponseGetInstancesAttributeType(arg *ListInstancesResponseGetInstancesAttributeType, val ListInstancesResponseGetInstancesRetType) {
|
||||
*arg = &val
|
||||
}
|
||||
|
||||
/*
|
||||
types and functions for pagination
|
||||
*/
|
||||
|
||||
// isModel
|
||||
type ListInstancesResponseGetPaginationAttributeType = *Pagination
|
||||
type ListInstancesResponseGetPaginationArgType = Pagination
|
||||
type ListInstancesResponseGetPaginationRetType = Pagination
|
||||
|
||||
func getListInstancesResponseGetPaginationAttributeTypeOk(arg ListInstancesResponseGetPaginationAttributeType) (ret ListInstancesResponseGetPaginationRetType, ok bool) {
|
||||
if arg == nil {
|
||||
return ret, false
|
||||
}
|
||||
return *arg, true
|
||||
}
|
||||
|
||||
func setListInstancesResponseGetPaginationAttributeType(arg *ListInstancesResponseGetPaginationAttributeType, val ListInstancesResponseGetPaginationRetType) {
|
||||
*arg = &val
|
||||
}
|
||||
|
||||
// ListInstancesResponse struct for ListInstancesResponse
|
||||
type ListInstancesResponse struct {
|
||||
// List of owned instances and their current status.
|
||||
// REQUIRED
|
||||
Instances ListInstancesResponseGetInstancesAttributeType `json:"instances" required:"true"`
|
||||
// REQUIRED
|
||||
Pagination ListInstancesResponseGetPaginationAttributeType `json:"pagination" required:"true"`
|
||||
}
|
||||
|
||||
type _ListInstancesResponse ListInstancesResponse
|
||||
|
||||
// NewListInstancesResponse instantiates a new ListInstancesResponse 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 NewListInstancesResponse(instances ListInstancesResponseGetInstancesArgType, pagination ListInstancesResponseGetPaginationArgType) *ListInstancesResponse {
|
||||
this := ListInstancesResponse{}
|
||||
setListInstancesResponseGetInstancesAttributeType(&this.Instances, instances)
|
||||
setListInstancesResponseGetPaginationAttributeType(&this.Pagination, pagination)
|
||||
return &this
|
||||
}
|
||||
|
||||
// NewListInstancesResponseWithDefaults instantiates a new ListInstancesResponse 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 NewListInstancesResponseWithDefaults() *ListInstancesResponse {
|
||||
this := ListInstancesResponse{}
|
||||
return &this
|
||||
}
|
||||
|
||||
// GetInstances returns the Instances field value
|
||||
func (o *ListInstancesResponse) GetInstances() (ret ListInstancesResponseGetInstancesRetType) {
|
||||
ret, _ = o.GetInstancesOk()
|
||||
return ret
|
||||
}
|
||||
|
||||
// GetInstancesOk returns a tuple with the Instances field value
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *ListInstancesResponse) GetInstancesOk() (ret ListInstancesResponseGetInstancesRetType, ok bool) {
|
||||
return getListInstancesResponseGetInstancesAttributeTypeOk(o.Instances)
|
||||
}
|
||||
|
||||
// SetInstances sets field value
|
||||
func (o *ListInstancesResponse) SetInstances(v ListInstancesResponseGetInstancesRetType) {
|
||||
setListInstancesResponseGetInstancesAttributeType(&o.Instances, v)
|
||||
}
|
||||
|
||||
// GetPagination returns the Pagination field value
|
||||
func (o *ListInstancesResponse) GetPagination() (ret ListInstancesResponseGetPaginationRetType) {
|
||||
ret, _ = o.GetPaginationOk()
|
||||
return ret
|
||||
}
|
||||
|
||||
// GetPaginationOk returns a tuple with the Pagination field value
|
||||
// and a boolean to check if the value has been set.
|
||||
func (o *ListInstancesResponse) GetPaginationOk() (ret ListInstancesResponseGetPaginationRetType, ok bool) {
|
||||
return getListInstancesResponseGetPaginationAttributeTypeOk(o.Pagination)
|
||||
}
|
||||
|
||||
// SetPagination sets field value
|
||||
func (o *ListInstancesResponse) SetPagination(v ListInstancesResponseGetPaginationRetType) {
|
||||
setListInstancesResponseGetPaginationAttributeType(&o.Pagination, v)
|
||||
}
|
||||
|
||||
func (o ListInstancesResponse) ToMap() (map[string]interface{}, error) {
|
||||
toSerialize := map[string]interface{}{}
|
||||
if val, ok := getListInstancesResponseGetInstancesAttributeTypeOk(o.Instances); ok {
|
||||
toSerialize["Instances"] = val
|
||||
}
|
||||
if val, ok := getListInstancesResponseGetPaginationAttributeTypeOk(o.Pagination); ok {
|
||||
toSerialize["Pagination"] = val
|
||||
}
|
||||
return toSerialize, nil
|
||||
}
|
||||
|
||||
type NullableListInstancesResponse struct {
|
||||
value *ListInstancesResponse
|
||||
isSet bool
|
||||
}
|
||||
|
||||
func (v NullableListInstancesResponse) Get() *ListInstancesResponse {
|
||||
return v.value
|
||||
}
|
||||
|
||||
func (v *NullableListInstancesResponse) Set(val *ListInstancesResponse) {
|
||||
v.value = val
|
||||
v.isSet = true
|
||||
}
|
||||
|
||||
func (v NullableListInstancesResponse) IsSet() bool {
|
||||
return v.isSet
|
||||
}
|
||||
|
||||
func (v *NullableListInstancesResponse) Unset() {
|
||||
v.value = nil
|
||||
v.isSet = false
|
||||
}
|
||||
|
||||
func NewNullableListInstancesResponse(val *ListInstancesResponse) *NullableListInstancesResponse {
|
||||
return &NullableListInstancesResponse{value: val, isSet: true}
|
||||
}
|
||||
|
||||
func (v NullableListInstancesResponse) MarshalJSON() ([]byte, error) {
|
||||
return json.Marshal(v.value)
|
||||
}
|
||||
|
||||
func (v *NullableListInstancesResponse) UnmarshalJSON(src []byte) error {
|
||||
v.isSet = true
|
||||
return json.Unmarshal(src, &v.value)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue