Skip to content

Commit 11c1872

Browse files
authored
Merge pull request #500 from snyk/docs/automatic-api-docs-update
Generate API docs from spec
2 parents 09c01fd + 503e819 commit 11c1872

23 files changed

+123702
-12533
lines changed

docs/.gitbook/assets/rest-spec.json

Lines changed: 123235 additions & 12310 deletions
Large diffs are not rendered by default.

docs/snyk-api/changelog.md

Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,130 @@
1+
## 2024-10-15 - Updated 2025-04-25
2+
3+
### POST - `/tenants/{tenant_id}/brokers/installs/{install_id}/deployments` - Added
4+
- Creates a new Broker Deployment for an installation
5+
6+
7+
### GET - `/tenants/{tenant_id}/brokers/installs/{install_id}/deployments` - Added
8+
- List Broker deployments for a given install ID
9+
10+
11+
### PATCH - `/tenants/{tenant_id}/brokers/installs/{install_id}/deployments/{deployment_id}` - Added
12+
- Updates a Broker deployment for a given install ID
13+
14+
15+
### DELETE - `/tenants/{tenant_id}/brokers/installs/{install_id}/deployments/{deployment_id}` - Added
16+
- Delete a Broker deployment for a given install ID
17+
18+
19+
### POST - `/tenants/{tenant_id}/brokers/installs/{install_id}/deployments/{deployment_id}/credentials` - Added
20+
- Creates a new Deployment credential
21+
22+
23+
### GET - `/tenants/{tenant_id}/brokers/installs/{install_id}/deployments/{deployment_id}/credentials` - Added
24+
- List Deployment credentials for a given deployment ID
25+
26+
27+
### PATCH - `/tenants/{tenant_id}/brokers/installs/{install_id}/deployments/{deployment_id}/credentials/{credential_id}` - Added
28+
- Updates a Deployment credential for an deployment
29+
30+
31+
### GET - `/tenants/{tenant_id}/brokers/installs/{install_id}/deployments/{deployment_id}/credentials/{credential_id}` - Added
32+
- Get all Deployment credential data for an deployment
33+
34+
35+
### DELETE - `/tenants/{tenant_id}/brokers/installs/{install_id}/deployments/{deployment_id}/credentials/{credential_id}` - Added
36+
- Deletes an existing Deployment credential for an deployment
37+
38+
39+
### POST - `/tenants/{tenant_id}/brokers/installs/{install_id}/deployments/{deployment_id}/contexts` - Added
40+
- Creates a new Broker Context
41+
42+
43+
### GET - `/tenants/{tenant_id}/brokers/installs/{install_id}/deployments/{deployment_id}/contexts` - Added
44+
- List Deployment contexts for a given deployment ID
45+
46+
47+
### POST - `/tenants/{tenant_id}/brokers/installs/{install_id}/deployments/{deployment_id}/connections` - Added
48+
- Creates a new Broker connection for an deployment
49+
50+
51+
### GET - `/tenants/{tenant_id}/brokers/installs/{install_id}/deployments/{deployment_id}/connections` - Added
52+
- List all Broker connections for a given deployment
53+
54+
55+
### DELETE - `/tenants/{tenant_id}/brokers/installs/{install_id}/deployments/{deployment_id}/connections` - Added
56+
- Deletes all existing Broker connections for an deployment
57+
58+
59+
### PATCH - `/tenants/{tenant_id}/brokers/installs/{install_id}/deployments/{deployment_id}/connections/{connection_id}` - Added
60+
- Updates a Broker connection for an deployment
61+
62+
63+
### GET - `/tenants/{tenant_id}/brokers/installs/{install_id}/deployments/{deployment_id}/connections/{connection_id}` - Added
64+
- Get all Broker connection data for an deployment
65+
66+
67+
### DELETE - `/tenants/{tenant_id}/brokers/installs/{install_id}/deployments/{deployment_id}/connections/{connection_id}` - Added
68+
- Deletes an existing Broker connection for an deployment
69+
70+
71+
### PATCH - `/tenants/{tenant_id}/brokers/installs/{install_id}/contexts/{context_id}` - Added
72+
- Updates a Broker Context for an deployment
73+
74+
75+
### GET - `/tenants/{tenant_id}/brokers/installs/{install_id}/contexts/{context_id}` - Added
76+
- List Broker context for a given broker context ID
77+
78+
79+
### DELETE - `/tenants/{tenant_id}/brokers/installs/{install_id}/contexts/{context_id}` - Added
80+
- Deletes an existing broker context
81+
82+
83+
### DELETE - `/tenants/{tenant_id}/brokers/installs/{install_id}/contexts/{context_id}/integrations/{integration_id}` - Added
84+
- Deletes an existing Broker context association for an integration
85+
86+
87+
### PATCH - `/tenants/{tenant_id}/brokers/installs/{install_id}/contexts/{context_id}/integration` - Added
88+
- Updates an integration to be associated with a Broker context
89+
90+
91+
### GET - `/tenants/{tenant_id}/brokers/installs/{install_id}/connections/{connection_id}/contexts` - Added
92+
- List Broker contexts for a given broker connection ID
93+
94+
95+
### GET - `/tenants/{tenant_id}/brokers/deployments` - Added
96+
- List Broker deployments for the tenant
97+
98+
99+
### DELETE - `/tenants/{tenant_id}/brokers/connections/{connection_id}/orgs/{org_id}/integrations/{integration_id}` - Added
100+
- Deletes an existing Broker connection for an deployment
101+
102+
103+
### POST - `/tenants/{tenant_id}/brokers/connections/{connection_id}/orgs/{org_id}/integration` - Added
104+
- Configures integrations to use the Broker connection for an deployment
105+
106+
107+
### GET - `/tenants/{tenant_id}/brokers/connections/{connection_id}/integrations` - Added
108+
- Get all integrations using the Broker connection
109+
110+
111+
### POST - `/orgs/{org_id}/policies` - Updated
112+
- the `data/attributes/action/data/reason` request property`s maxLength was set to `10000`
113+
![Badge](https://img.shields.io/badge/Breaking-yellow)
114+
- the `data/attributes/name` request property`s maxLength was set to `255`
115+
![Badge](https://img.shields.io/badge/Breaking-yellow)
116+
117+
118+
### PATCH - `/orgs/{org_id}/policies/{policy_id}` - Updated
119+
- the `data/attributes/action/data/reason` request property`s maxLength was set to `10000`
120+
![Badge](https://img.shields.io/badge/Breaking-yellow)
121+
- the `data/attributes/name` request property`s maxLength was set to `255`
122+
![Badge](https://img.shields.io/badge/Breaking-yellow)
123+
124+
125+
### GET - `/orgs/{org_id}/brokers/connections` - Added
126+
- List all Broker connections integrated with a given org
127+
1128
## 2024-10-15 - Updated 2025-04-22
2129

3130
### GET - `/orgs/{org_id}/policies` - Updated

docs/snyk-api/reference/apps.md

Lines changed: 56 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -4,114 +4,114 @@
44
This document uses the REST API. For more details, see the [Authentication for API](../authentication-for-api/) page.
55
{% endhint %}
66

7-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/self/apps" method="get" %}
7+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/self/apps" method="get" %}
88
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
9-
{% endopenapi %}
9+
{% endswagger %}
1010

11-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/self/apps/{app_id}" method="delete" %}
11+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/self/apps/{app_id}" method="delete" %}
1212
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
13-
{% endopenapi %}
13+
{% endswagger %}
1414

15-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/self/apps/{app_id}/sessions" method="get" %}
15+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/self/apps/{app_id}/sessions" method="get" %}
1616
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
17-
{% endopenapi %}
17+
{% endswagger %}
1818

19-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/self/apps/{app_id}/sessions/{session_id}" method="delete" %}
19+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/self/apps/{app_id}/sessions/{session_id}" method="delete" %}
2020
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
21-
{% endopenapi %}
21+
{% endswagger %}
2222

23-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/self/apps/installs" method="get" %}
23+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/self/apps/installs" method="get" %}
2424
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
25-
{% endopenapi %}
25+
{% endswagger %}
2626

27-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/self/apps/installs/{install_id}" method="delete" %}
27+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/self/apps/installs/{install_id}" method="delete" %}
2828
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
29-
{% endopenapi %}
29+
{% endswagger %}
3030

31-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps" method="post" %}
31+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps" method="post" %}
3232
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
33-
{% endopenapi %}
33+
{% endswagger %}
3434

35-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps" method="get" %}
35+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps" method="get" %}
3636
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
37-
{% endopenapi %}
37+
{% endswagger %}
3838

39-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/{client_id}" method="patch" %}
39+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/{client_id}" method="patch" %}
4040
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
41-
{% endopenapi %}
41+
{% endswagger %}
4242

43-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/{client_id}" method="get" %}
43+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/{client_id}" method="get" %}
4444
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
45-
{% endopenapi %}
45+
{% endswagger %}
4646

47-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/{client_id}" method="delete" %}
47+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/{client_id}" method="delete" %}
4848
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
49-
{% endopenapi %}
49+
{% endswagger %}
5050

51-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/{client_id}/secrets" method="post" %}
51+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/{client_id}/secrets" method="post" %}
5252
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
53-
{% endopenapi %}
53+
{% endswagger %}
5454

55-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/installs" method="post" %}
55+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/installs" method="post" %}
5656
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
57-
{% endopenapi %}
57+
{% endswagger %}
5858

59-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/installs" method="get" %}
59+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/installs" method="get" %}
6060
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
61-
{% endopenapi %}
61+
{% endswagger %}
6262

63-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/installs/{install_id}" method="delete" %}
63+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/installs/{install_id}" method="delete" %}
6464
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
65-
{% endopenapi %}
65+
{% endswagger %}
6666

67-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/installs/{install_id}/secrets" method="post" %}
67+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/installs/{install_id}/secrets" method="post" %}
6868
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
69-
{% endopenapi %}
69+
{% endswagger %}
7070

71-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/creations" method="post" %}
71+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/creations" method="post" %}
7272
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
73-
{% endopenapi %}
73+
{% endswagger %}
7474

75-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/creations" method="get" %}
75+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/creations" method="get" %}
7676
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
77-
{% endopenapi %}
77+
{% endswagger %}
7878

79-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/creations/{app_id}" method="patch" %}
79+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/creations/{app_id}" method="patch" %}
8080
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
81-
{% endopenapi %}
81+
{% endswagger %}
8282

83-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/creations/{app_id}" method="get" %}
83+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/creations/{app_id}" method="get" %}
8484
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
85-
{% endopenapi %}
85+
{% endswagger %}
8686

87-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/creations/{app_id}" method="delete" %}
87+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/creations/{app_id}" method="delete" %}
8888
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
89-
{% endopenapi %}
89+
{% endswagger %}
9090

91-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/creations/{app_id}/secrets" method="post" %}
91+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/apps/creations/{app_id}/secrets" method="post" %}
9292
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
93-
{% endopenapi %}
93+
{% endswagger %}
9494

95-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/app_bots" method="get" %}
95+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/app_bots" method="get" %}
9696
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
97-
{% endopenapi %}
97+
{% endswagger %}
9898

99-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/app_bots/{bot_id}" method="delete" %}
99+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/app_bots/{bot_id}" method="delete" %}
100100
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
101-
{% endopenapi %}
101+
{% endswagger %}
102102

103-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/groups/{group_id}/apps/installs" method="post" %}
103+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/groups/{group_id}/apps/installs" method="post" %}
104104
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
105-
{% endopenapi %}
105+
{% endswagger %}
106106

107-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/groups/{group_id}/apps/installs" method="get" %}
107+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/groups/{group_id}/apps/installs" method="get" %}
108108
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
109-
{% endopenapi %}
109+
{% endswagger %}
110110

111-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/groups/{group_id}/apps/installs/{install_id}" method="delete" %}
111+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/groups/{group_id}/apps/installs/{install_id}" method="delete" %}
112112
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
113-
{% endopenapi %}
113+
{% endswagger %}
114114

115-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/groups/{group_id}/apps/installs/{install_id}/secrets" method="post" %}
115+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/groups/{group_id}/apps/installs/{install_id}/secrets" method="post" %}
116116
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
117-
{% endopenapi %}
117+
{% endswagger %}

docs/snyk-api/reference/audit-logs.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
This document uses the REST API. For more details, see the [Authentication for API](../authentication-for-api/) page.
55
{% endhint %}
66

7-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/audit_logs/search" method="get" %}
7+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/audit_logs/search" method="get" %}
88
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
9-
{% endopenapi %}
9+
{% endswagger %}
1010

11-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/groups/{group_id}/audit_logs/search" method="get" %}
11+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/groups/{group_id}/audit_logs/search" method="get" %}
1212
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
13-
{% endopenapi %}
13+
{% endswagger %}

docs/snyk-api/reference/collection.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,34 +4,34 @@
44
This document uses the REST API. For more details, see the [Authentication for API](../authentication-for-api/) page.
55
{% endhint %}
66

7-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/collections" method="post" %}
7+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/collections" method="post" %}
88
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
9-
{% endopenapi %}
9+
{% endswagger %}
1010

11-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/collections" method="get" %}
11+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/collections" method="get" %}
1212
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
13-
{% endopenapi %}
13+
{% endswagger %}
1414

15-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/collections/{collection_id}" method="patch" %}
15+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/collections/{collection_id}" method="patch" %}
1616
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
17-
{% endopenapi %}
17+
{% endswagger %}
1818

19-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/collections/{collection_id}" method="get" %}
19+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/collections/{collection_id}" method="get" %}
2020
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
21-
{% endopenapi %}
21+
{% endswagger %}
2222

23-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/collections/{collection_id}" method="delete" %}
23+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/collections/{collection_id}" method="delete" %}
2424
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
25-
{% endopenapi %}
25+
{% endswagger %}
2626

27-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/collections/{collection_id}/relationships/projects" method="post" %}
27+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/collections/{collection_id}/relationships/projects" method="post" %}
2828
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
29-
{% endopenapi %}
29+
{% endswagger %}
3030

31-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/collections/{collection_id}/relationships/projects" method="get" %}
31+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/collections/{collection_id}/relationships/projects" method="get" %}
3232
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
33-
{% endopenapi %}
33+
{% endswagger %}
3434

35-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/collections/{collection_id}/relationships/projects" method="delete" %}
35+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/collections/{collection_id}/relationships/projects" method="delete" %}
3636
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
37-
{% endopenapi %}
37+
{% endswagger %}

docs/snyk-api/reference/containerimage.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
This document uses the REST API. For more details, see the [Authentication for API](../authentication-for-api/) page.
55
{% endhint %}
66

7-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/container_images" method="get" %}
7+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/container_images" method="get" %}
88
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
9-
{% endopenapi %}
9+
{% endswagger %}
1010

11-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/container_images/{image_id}" method="get" %}
11+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/container_images/{image_id}" method="get" %}
1212
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
13-
{% endopenapi %}
13+
{% endswagger %}
1414

15-
{% openapi src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/container_images/{image_id}/relationships/image_target_refs" method="get" %}
15+
{% swagger src="../../.gitbook/assets/rest-spec.json" path="/orgs/{org_id}/container_images/{image_id}/relationships/image_target_refs" method="get" %}
1616
[rest-spec.json](../../.gitbook/assets/rest-spec.json)
17-
{% endopenapi %}
17+
{% endswagger %}

0 commit comments

Comments
 (0)