-
Notifications
You must be signed in to change notification settings - Fork 5
/
model_api_key.go
168 lines (142 loc) · 4.47 KB
/
model_api_key.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
// Code based on the AtlasAPI V2 OpenAPI file
package admin
import (
"encoding/json"
)
// ApiKey Details contained in one API key.
type ApiKey struct {
// List of network addresses granted access to this API using this API key.
// Read only field.
AccessList *[]AccessListItem `json:"accessList,omitempty"`
// Unique 24-hexadecimal digit string that identifies this organization API key.
// Read only field.
Id string `json:"id"`
// Public API key value set for the specified organization API key.
// Read only field.
PublicKey string `json:"publicKey"`
// List that contains roles that the API key needs to have. All roles you provide must be valid for the specified project or organization. Each request must include a minimum of one valid role. The resource returns all project and organization roles assigned to the Cloud user.
// Read only field.
Roles *[]CloudAccessRoleAssignment `json:"roles,omitempty"`
}
// NewApiKey instantiates a new ApiKey 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 NewApiKey(id string, publicKey string) *ApiKey {
this := ApiKey{}
this.Id = id
this.PublicKey = publicKey
return &this
}
// NewApiKeyWithDefaults instantiates a new ApiKey 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 NewApiKeyWithDefaults() *ApiKey {
this := ApiKey{}
return &this
}
// GetAccessList returns the AccessList field value if set, zero value otherwise
func (o *ApiKey) GetAccessList() []AccessListItem {
if o == nil || IsNil(o.AccessList) {
var ret []AccessListItem
return ret
}
return *o.AccessList
}
// GetAccessListOk returns a tuple with the AccessList field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ApiKey) GetAccessListOk() (*[]AccessListItem, bool) {
if o == nil || IsNil(o.AccessList) {
return nil, false
}
return o.AccessList, true
}
// HasAccessList returns a boolean if a field has been set.
func (o *ApiKey) HasAccessList() bool {
if o != nil && !IsNil(o.AccessList) {
return true
}
return false
}
// SetAccessList gets a reference to the given []AccessListItem and assigns it to the AccessList field.
func (o *ApiKey) SetAccessList(v []AccessListItem) {
o.AccessList = &v
}
// GetId returns the Id field value
func (o *ApiKey) GetId() string {
if o == nil {
var ret string
return ret
}
return o.Id
}
// GetIdOk returns a tuple with the Id field value
// and a boolean to check if the value has been set.
func (o *ApiKey) GetIdOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Id, true
}
// SetId sets field value
func (o *ApiKey) SetId(v string) {
o.Id = v
}
// GetPublicKey returns the PublicKey field value
func (o *ApiKey) GetPublicKey() string {
if o == nil {
var ret string
return ret
}
return o.PublicKey
}
// GetPublicKeyOk returns a tuple with the PublicKey field value
// and a boolean to check if the value has been set.
func (o *ApiKey) GetPublicKeyOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.PublicKey, true
}
// SetPublicKey sets field value
func (o *ApiKey) SetPublicKey(v string) {
o.PublicKey = v
}
// GetRoles returns the Roles field value if set, zero value otherwise
func (o *ApiKey) GetRoles() []CloudAccessRoleAssignment {
if o == nil || IsNil(o.Roles) {
var ret []CloudAccessRoleAssignment
return ret
}
return *o.Roles
}
// GetRolesOk returns a tuple with the Roles field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *ApiKey) GetRolesOk() (*[]CloudAccessRoleAssignment, bool) {
if o == nil || IsNil(o.Roles) {
return nil, false
}
return o.Roles, true
}
// HasRoles returns a boolean if a field has been set.
func (o *ApiKey) HasRoles() bool {
if o != nil && !IsNil(o.Roles) {
return true
}
return false
}
// SetRoles gets a reference to the given []CloudAccessRoleAssignment and assigns it to the Roles field.
func (o *ApiKey) SetRoles(v []CloudAccessRoleAssignment) {
o.Roles = &v
}
func (o ApiKey) MarshalJSONWithoutReadOnly() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o ApiKey) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
return toSerialize, nil
}