-
Notifications
You must be signed in to change notification settings - Fork 0
/
model_server_azure.go
137 lines (110 loc) · 3.27 KB
/
model_server_azure.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*
Couchbase Public API
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
API version: 2.0.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package couchbasecapella
import (
"encoding/json"
)
// ServerAzure struct for ServerAzure
type ServerAzure struct {
InstanceSize AzureInstances `json:"instanceSize"`
VolumeType AzureVolumeTypes `json:"volumeType"`
}
// NewServerAzure instantiates a new ServerAzure 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 NewServerAzure(instanceSize AzureInstances, volumeType AzureVolumeTypes) *ServerAzure {
this := ServerAzure{}
this.InstanceSize = instanceSize
this.VolumeType = volumeType
return &this
}
// NewServerAzureWithDefaults instantiates a new ServerAzure 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 NewServerAzureWithDefaults() *ServerAzure {
this := ServerAzure{}
return &this
}
// GetInstanceSize returns the InstanceSize field value
func (o *ServerAzure) GetInstanceSize() AzureInstances {
if o == nil {
var ret AzureInstances
return ret
}
return o.InstanceSize
}
// GetInstanceSizeOk returns a tuple with the InstanceSize field value
// and a boolean to check if the value has been set.
func (o *ServerAzure) GetInstanceSizeOk() (*AzureInstances, bool) {
if o == nil {
return nil, false
}
return &o.InstanceSize, true
}
// SetInstanceSize sets field value
func (o *ServerAzure) SetInstanceSize(v AzureInstances) {
o.InstanceSize = v
}
// GetVolumeType returns the VolumeType field value
func (o *ServerAzure) GetVolumeType() AzureVolumeTypes {
if o == nil {
var ret AzureVolumeTypes
return ret
}
return o.VolumeType
}
// GetVolumeTypeOk returns a tuple with the VolumeType field value
// and a boolean to check if the value has been set.
func (o *ServerAzure) GetVolumeTypeOk() (*AzureVolumeTypes, bool) {
if o == nil {
return nil, false
}
return &o.VolumeType, true
}
// SetVolumeType sets field value
func (o *ServerAzure) SetVolumeType(v AzureVolumeTypes) {
o.VolumeType = v
}
func (o ServerAzure) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if true {
toSerialize["instanceSize"] = o.InstanceSize
}
if true {
toSerialize["volumeType"] = o.VolumeType
}
return json.Marshal(toSerialize)
}
type NullableServerAzure struct {
value *ServerAzure
isSet bool
}
func (v NullableServerAzure) Get() *ServerAzure {
return v.value
}
func (v *NullableServerAzure) Set(val *ServerAzure) {
v.value = val
v.isSet = true
}
func (v NullableServerAzure) IsSet() bool {
return v.isSet
}
func (v *NullableServerAzure) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableServerAzure(val *ServerAzure) *NullableServerAzure {
return &NullableServerAzure{value: val, isSet: true}
}
func (v NullableServerAzure) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableServerAzure) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}