diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2022-11-02 18:10:05 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2022-11-02 18:10:05 +0000 |
commit | 983f6954d19f269a059aab1754568737d9ab6f64 (patch) | |
tree | 399b8b75abf57118df941af3b485b85a0fb60540 /doc/api/secure_files.md | |
parent | e36443c1d657343410d3de25d52ae0fe9ee67d8d (diff) | |
download | gitlab-ce-983f6954d19f269a059aab1754568737d9ab6f64.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/secure_files.md')
-rw-r--r-- | doc/api/secure_files.md | 34 |
1 files changed, 29 insertions, 5 deletions
diff --git a/doc/api/secure_files.md b/doc/api/secure_files.md index 0c34dd30cdf..c2c21134d6f 100644 --- a/doc/api/secure_files.md +++ b/doc/api/secure_files.md @@ -42,14 +42,34 @@ Example response: "name": "myfile.jks", "checksum": "16630b189ab34b2e3504f4758e1054d2e478deda510b2b08cc0ef38d12e80aac", "checksum_algorithm": "sha256", - "created_at": "2022-02-22T22:22:22.222Z" + "created_at": "2022-02-22T22:22:22.222Z", + "expires_at": null, + "metadata": null }, { "id": 2, - "name": "myotherfile.jks", + "name": "myfile.cer", "checksum": "16630b189ab34b2e3504f4758e1054d2e478deda510b2b08cc0ef38d12e80aa2", "checksum_algorithm": "sha256", - "created_at": "2022-02-22T22:22:22.222Z" + "created_at": "2022-02-22T22:22:22.222Z", + "expires_at": "2022-09-21T14:56:00.000Z", + "metadata": { + "id":"75949910542696343243264405377658443914", + "issuer": { + "C":"US", + "O":"Apple Inc.", + "CN":"Apple Worldwide Developer Relations Certification Authority", + "OU":"G3" + }, + "subject": { + "C":"US", + "O":"Organization Name", + "CN":"Apple Distribution: Organization Name (ABC123XYZ)", + "OU":"ABC123XYZ", + "UID":"ABC123XYZ" + }, + "expires_at":"2022-09-21T14:56:00.000Z" + } } ] ``` @@ -83,7 +103,9 @@ Example response: "name": "myfile.jks", "checksum": "16630b189ab34b2e3504f4758e1054d2e478deda510b2b08cc0ef38d12e80aac", "checksum_algorithm": "sha256", - "created_at": "2022-02-22T22:22:22.222Z" + "created_at": "2022-02-22T22:22:22.222Z", + "expires_at": null, + "metadata": null } ``` @@ -118,7 +140,9 @@ Example response: "name": "myfile.jks", "checksum": "16630b189ab34b2e3504f4758e1054d2e478deda510b2b08cc0ef38d12e80aac", "checksum_algorithm": "sha256", - "created_at": "2022-02-22T22:22:22.222Z" + "created_at": "2022-02-22T22:22:22.222Z", + "expires_at": null, + "metadata": null } ``` |