Updating a Secret
Function
This API is used to update a secret.
URI
PUT /v2/{project_id}/edgemgr/secrets/{secret_id}
Parameter |
Mandatory |
Description |
---|---|---|
project_id |
Yes |
Project ID. For details about how to obtain a project ID, see Obtaining a Project ID. |
secret_id |
Yes |
Secret ID. |
Request
Request parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
Content-Type |
Yes |
String |
Message body type (format). The default value application/json is recommended. |
X-Auth-Token |
Yes |
String |
User token. The token can be obtained by calling the IAM API used to obtain a user token. The value of X-Subject-Token in the response header is the user token. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
secret |
Yes |
Table 4 object |
Secret information. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
description |
No |
String |
Secret description. The value contains a maximum of 255 characters. The following characters are not allowed: ^~#$%&* <>()[]{}'"\ |
secrets |
No |
Map<String, String> |
secrets is a dictionary consisting of multiple key-value pairs. The maximum length of the dictionary is 1,048,576 characters after being converted into JSON strings. The keys and values are strings. The key in a key-value pair must contain 1 to 63 characters and start with a letter or hyphen. Only letters, digits, periods (.), hyphens (-), and underscores (_) are allowed. The value in the key-value pair must be a Base64-encoded string. Note: The length of the secrets dictionary is the length after the dictionary is converted into a standard string. For example, after the dictionary {"a": "b"} is converted into a standard string '{"a": "b"}', the length is 10 characters. |
Example request
{ "secret": { "description": "this is a test secret", "secrets": { "key1": "val-1", "key2": "val-2" } } }
Response
Response parameters
Parameter |
Type |
Description |
---|---|---|
secret |
Table 6 object |
Secret information. |
Parameter |
Type |
Description |
---|---|---|
id |
String |
Secret ID. |
name |
String |
Secret name. |
description |
String |
Secret description. |
secrets |
Object |
Secret list. |
project_id |
String |
Project ID. |
created_at |
String |
Time when the secret is created. |
updated_at |
String |
Time when the secret is updated. |
type |
String |
Secret type. |
Example response
{ "secret": { "id": "12ns9eb6cc0d49a0941df2f31283mds8 ", "name": "test-secret", "description": "this is a test secret", "secrets": { "key1": "val-1", "key2": "val-2" }, "project_id": "d16e6eb6cc0d49a0941df2f31285757a", "created_at": "2018-07-16T13:41:25.347335", "updated_at": "2018-07-18T13:41:25.347335", "type": "Opaque" } }
Error Codes
For details, see Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot