Retrieve the SVM configuration for an S3 user
- PDF of this doc site
Collection of separate PDF docs
Creating your file...
GET /protocols/s3/services/{svm.uuid}/users
Introduced In: 9.7
Retrieves the S3 user's SVM configuration.
Related ONTAP commands
-
vserver object-store-server user show
Learn more
Parameters
Name | Type | In | Required | Description |
---|---|---|---|---|
comment |
string |
query |
False |
Filter by comment
|
key_expiry_time |
string |
query |
False |
Filter by key_expiry_time
|
access_key |
string |
query |
False |
Filter by access_key |
svm.name |
string |
query |
False |
Filter by svm.name |
name |
string |
query |
False |
Filter by name
|
key_time_to_live |
string |
query |
False |
Filter by key_time_to_live
|
svm.uuid |
string |
path |
True |
UUID of the SVM to which this object belongs. |
fields |
array[string] |
query |
False |
Specify the fields to return. |
max_records |
integer |
query |
False |
Limit the number of records returned. |
return_records |
boolean |
query |
False |
The default is true for GET calls. When set to false, only the number of records is returned.
|
return_timeout |
integer |
query |
False |
The number of seconds to allow the call to execute before returning. When iterating over a collection, the default is 15 seconds. ONTAP returns earlier if either max records or the end of the collection is reached.
|
order_by |
array[string] |
query |
False |
Order results by specified fields and optional [asc |
Response
Status: 200, Ok
Name | Type | Description |
---|---|---|
_links |
||
num_records |
integer |
Number of records |
records |
array[s3_user] |
Example response
{
"_links": {
"next": {
"href": "/api/resourcelink"
},
"self": {
"href": "/api/resourcelink"
}
},
"num_records": 1,
"records": [
{
"access_key": "HJAKU28M3SXTE2UXUACV",
"comment": "S3 user",
"key_expiry_time": "2023-12-31 19:00:00 -0500",
"key_id": 1,
"key_time_to_live": "PT6H3M",
"keys": [
{
"access_key": "HJAKU28M3SXTE2UXUACV",
"expiry_time": "2023-12-31 19:00:00 -0500",
"id": 1,
"time_to_live": "PT6H3M"
}
],
"name": "user-1",
"svm": {
"_links": {
"self": {
"href": "/api/resourcelink"
}
},
"name": "svm1",
"uuid": "02c9e252-41be-11e9-81d5-00a0986138f7"
}
}
]
}
Error
Status: Default, Error
Name | Type | Description |
---|---|---|
error |
Example error
{
"error": {
"arguments": [
{
"code": "string",
"message": "string"
}
],
"code": "4",
"message": "entry doesn't exist",
"target": "uuid"
}
}
Definitions
See Definitions
href
Name | Type | Description |
---|---|---|
href |
string |
collection_links
Name | Type | Description |
---|---|---|
next |
||
self |
keys
Specifies a key associated with an S3 user. At most only two keys can be associated with a user.
Name | Type | Description |
---|---|---|
access_key |
string |
Specifies the access key for the user. |
expiry_time |
string |
Specifies the date and time after which keys expire and are no longer valid. |
id |
integer |
Specifies an S3 user key identifier. Each user can only have a maximum of two keys. The key_id can either be '1' or '2'. |
time_to_live |
string |
Indicates the time period from when this parameter is specified:
|
_links
Name | Type | Description |
---|---|---|
self |
svm
SVM, applies only to SVM-scoped objects.
Name | Type | Description |
---|---|---|
_links |
||
name |
string |
The name of the SVM. This field cannot be specified in a PATCH method. |
uuid |
string |
The unique identifier of the SVM. This field cannot be specified in a PATCH method. |
s3_user
This is a container of S3 users.
Name | Type | Description |
---|---|---|
access_key |
string |
Specifies the access key for the user. |
comment |
string |
Can contain any additional information about the user being created or modified. |
key_expiry_time |
string |
Specifies the date and time after which keys expire and are no longer valid. |
key_id |
integer |
Specifies the identifier of an S3 user key that needs to be generated or deleted. The key_id can either be '1' or '2'. |
key_time_to_live |
string |
Indicates the time period from when this parameter is specified:
|
keys |
array[keys] |
Specifies the keys associated with an S3 User. |
name |
string |
Specifies the name of the user. A user name length can range from 1 to 64 characters and can only contain the following combination of characters 0-9, A-Z, a-z, "_", "+", "=", ",", ".","@", and "-". |
svm |
SVM, applies only to SVM-scoped objects. |
error_arguments
Name | Type | Description |
---|---|---|
code |
string |
Argument code |
message |
string |
Message argument |
returned_error
Name | Type | Description |
---|---|---|
arguments |
array[error_arguments] |
Message arguments |
code |
string |
Error code |
message |
string |
Error message |
target |
string |
The target parameter that caused the error. |