File: UserProperties.md

package info (click to toggle)
golang-github-ionos-cloud-sdk-go 6.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 6,332 kB
  • sloc: sh: 35; makefile: 3
file content (236 lines) | stat: -rw-r--r-- 6,645 bytes parent folder | download
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
# UserProperties

## Properties

|Name | Type | Description | Notes|
|------------ | ------------- | ------------- | -------------|
|**Firstname** | Pointer to **string** | The first name of the user. | [optional] |
|**Lastname** | Pointer to **string** | The last name of the user. | [optional] |
|**Email** | Pointer to **string** | The email address of the user. | [optional] |
|**Administrator** | Pointer to **bool** | Indicates if the user has admin rights. | [optional] |
|**ForceSecAuth** | Pointer to **bool** | Indicates if secure authentication should be forced on the user. | [optional] |
|**SecAuthActive** | Pointer to **bool** | Indicates if secure authentication is active for the user. | [optional] |
|**S3CanonicalUserId** | Pointer to **string** | Canonical (Object storage) ID of the user for a given identity. | [optional] |
|**Active** | Pointer to **bool** | Indicates if the user is active. | [optional] |

## Methods

### NewUserProperties

`func NewUserProperties() *UserProperties`

NewUserProperties instantiates a new UserProperties 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

### NewUserPropertiesWithDefaults

`func NewUserPropertiesWithDefaults() *UserProperties`

NewUserPropertiesWithDefaults instantiates a new UserProperties 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

### GetFirstname

`func (o *UserProperties) GetFirstname() string`

GetFirstname returns the Firstname field if non-nil, zero value otherwise.

### GetFirstnameOk

`func (o *UserProperties) GetFirstnameOk() (*string, bool)`

GetFirstnameOk returns a tuple with the Firstname field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetFirstname

`func (o *UserProperties) SetFirstname(v string)`

SetFirstname sets Firstname field to given value.

### HasFirstname

`func (o *UserProperties) HasFirstname() bool`

HasFirstname returns a boolean if a field has been set.

### GetLastname

`func (o *UserProperties) GetLastname() string`

GetLastname returns the Lastname field if non-nil, zero value otherwise.

### GetLastnameOk

`func (o *UserProperties) GetLastnameOk() (*string, bool)`

GetLastnameOk returns a tuple with the Lastname field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetLastname

`func (o *UserProperties) SetLastname(v string)`

SetLastname sets Lastname field to given value.

### HasLastname

`func (o *UserProperties) HasLastname() bool`

HasLastname returns a boolean if a field has been set.

### GetEmail

`func (o *UserProperties) GetEmail() string`

GetEmail returns the Email field if non-nil, zero value otherwise.

### GetEmailOk

`func (o *UserProperties) GetEmailOk() (*string, bool)`

GetEmailOk returns a tuple with the Email field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetEmail

`func (o *UserProperties) SetEmail(v string)`

SetEmail sets Email field to given value.

### HasEmail

`func (o *UserProperties) HasEmail() bool`

HasEmail returns a boolean if a field has been set.

### GetAdministrator

`func (o *UserProperties) GetAdministrator() bool`

GetAdministrator returns the Administrator field if non-nil, zero value otherwise.

### GetAdministratorOk

`func (o *UserProperties) GetAdministratorOk() (*bool, bool)`

GetAdministratorOk returns a tuple with the Administrator field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetAdministrator

`func (o *UserProperties) SetAdministrator(v bool)`

SetAdministrator sets Administrator field to given value.

### HasAdministrator

`func (o *UserProperties) HasAdministrator() bool`

HasAdministrator returns a boolean if a field has been set.

### GetForceSecAuth

`func (o *UserProperties) GetForceSecAuth() bool`

GetForceSecAuth returns the ForceSecAuth field if non-nil, zero value otherwise.

### GetForceSecAuthOk

`func (o *UserProperties) GetForceSecAuthOk() (*bool, bool)`

GetForceSecAuthOk returns a tuple with the ForceSecAuth field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetForceSecAuth

`func (o *UserProperties) SetForceSecAuth(v bool)`

SetForceSecAuth sets ForceSecAuth field to given value.

### HasForceSecAuth

`func (o *UserProperties) HasForceSecAuth() bool`

HasForceSecAuth returns a boolean if a field has been set.

### GetSecAuthActive

`func (o *UserProperties) GetSecAuthActive() bool`

GetSecAuthActive returns the SecAuthActive field if non-nil, zero value otherwise.

### GetSecAuthActiveOk

`func (o *UserProperties) GetSecAuthActiveOk() (*bool, bool)`

GetSecAuthActiveOk returns a tuple with the SecAuthActive field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetSecAuthActive

`func (o *UserProperties) SetSecAuthActive(v bool)`

SetSecAuthActive sets SecAuthActive field to given value.

### HasSecAuthActive

`func (o *UserProperties) HasSecAuthActive() bool`

HasSecAuthActive returns a boolean if a field has been set.

### GetS3CanonicalUserId

`func (o *UserProperties) GetS3CanonicalUserId() string`

GetS3CanonicalUserId returns the S3CanonicalUserId field if non-nil, zero value otherwise.

### GetS3CanonicalUserIdOk

`func (o *UserProperties) GetS3CanonicalUserIdOk() (*string, bool)`

GetS3CanonicalUserIdOk returns a tuple with the S3CanonicalUserId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetS3CanonicalUserId

`func (o *UserProperties) SetS3CanonicalUserId(v string)`

SetS3CanonicalUserId sets S3CanonicalUserId field to given value.

### HasS3CanonicalUserId

`func (o *UserProperties) HasS3CanonicalUserId() bool`

HasS3CanonicalUserId returns a boolean if a field has been set.

### GetActive

`func (o *UserProperties) GetActive() bool`

GetActive returns the Active field if non-nil, zero value otherwise.

### GetActiveOk

`func (o *UserProperties) GetActiveOk() (*bool, bool)`

GetActiveOk returns a tuple with the Active field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetActive

`func (o *UserProperties) SetActive(v bool)`

SetActive sets Active field to given value.

### HasActive

`func (o *UserProperties) HasActive() bool`

HasActive returns a boolean if a field has been set.