Skip to content

Commit 7d3dd28

Browse files
OAS Update
1 parent 9ff2efb commit 7d3dd28

1 file changed

Lines changed: 33 additions & 33 deletions

File tree

services/functions/v1alpha/functions.json

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
}
5353
},
5454
"pullCredentialId": {
55-
"description": "The identifier of the OCI registry pull secret configuration",
55+
"description": "The identifier of the OCI registry pull credential configuration",
5656
"in": "path",
5757
"name": "pullCredentialId",
5858
"required": true,
@@ -209,14 +209,14 @@
209209
],
210210
"type": "object"
211211
},
212-
"CreatePullSecretPayload": {
212+
"CreatePullCredentialPayload": {
213213
"properties": {
214214
"address": {
215215
"description": "The OCI registry address.",
216216
"type": "string"
217217
},
218218
"id": {
219-
"description": "Unique identifier for the OCI registry pull secret.",
219+
"description": "Unique identifier for the OCI registry pull credential.",
220220
"type": "string"
221221
},
222222
"labels": {
@@ -226,7 +226,7 @@
226226
"type": "object"
227227
},
228228
"name": {
229-
"description": "Unique name for the OCI registry pull secret.",
229+
"description": "Unique name for the OCI registry pull credential.",
230230
"maxLength": 32,
231231
"minLength": 1,
232232
"type": "string"
@@ -401,16 +401,16 @@
401401
},
402402
"type": "object"
403403
},
404-
"ListPullSecrets": {
404+
"ListPullCredentials": {
405405
"properties": {
406406
"next_page_token": {
407407
"description": "Token for the next page of results.",
408408
"type": "string"
409409
},
410410
"pull_credentials": {
411-
"description": "List of oci registries pull secrets associated with the project.",
411+
"description": "List of oci registries pull credentials associated with the project.",
412412
"items": {
413-
"$ref": "#/components/schemas/PullSecret"
413+
"$ref": "#/components/schemas/PullCredential"
414414
},
415415
"type": "array"
416416
}
@@ -445,14 +445,14 @@
445445
"description": "Error metadata returned to the client",
446446
"type": "object"
447447
},
448-
"PullSecret": {
448+
"PullCredential": {
449449
"properties": {
450450
"address": {
451451
"description": "The OCI registry address.",
452452
"type": "string"
453453
},
454454
"id": {
455-
"description": "Unique identifier for the OCI registry pull secret.",
455+
"description": "Unique identifier for the OCI registry pull credential.",
456456
"type": "string"
457457
},
458458
"labels": {
@@ -462,7 +462,7 @@
462462
"type": "object"
463463
},
464464
"name": {
465-
"description": "Unique name for the OCI registry pull secret.",
465+
"description": "Unique name for the OCI registry pull credential.",
466466
"maxLength": 32,
467467
"minLength": 1,
468468
"type": "string"
@@ -542,7 +542,7 @@
542542
"type": "string"
543543
},
544544
"oci_pull_credential_id": {
545-
"description": "OCI Registry pull secret to use for pulling the revision's image.",
545+
"description": "OCI Registry pull credential to use for pulling the revision's image.",
546546
"type": "string"
547547
},
548548
"oci_reference": {
@@ -672,14 +672,14 @@
672672
],
673673
"type": "object"
674674
},
675-
"UpdatePullSecretPayload": {
675+
"UpdatePullCredentialPayload": {
676676
"properties": {
677677
"address": {
678678
"description": "The OCI registry address.",
679679
"type": "string"
680680
},
681681
"id": {
682-
"description": "Unique identifier for the OCI registry pull secret.",
682+
"description": "Unique identifier for the OCI registry pull credential.",
683683
"type": "string"
684684
},
685685
"labels": {
@@ -689,7 +689,7 @@
689689
"type": "object"
690690
},
691691
"name": {
692-
"description": "Unique name for the OCI registry pull secret.",
692+
"description": "Unique name for the OCI registry pull credential.",
693693
"maxLength": 32,
694694
"minLength": 1,
695695
"type": "string"
@@ -750,7 +750,7 @@
750750
"type": "string"
751751
},
752752
"oci_pull_credential_id": {
753-
"description": "OCI Registry pull secret to use for pulling the revision's image.",
753+
"description": "OCI Registry pull credential to use for pulling the revision's image.",
754754
"type": "string"
755755
},
756756
"oci_reference": {
@@ -837,7 +837,7 @@
837837
"type": "string"
838838
},
839839
"oci_pull_credential_id": {
840-
"description": "OCI Registry pull secret to use for pulling the revision's image.",
840+
"description": "OCI Registry pull credential to use for pulling the revision's image.",
841841
"type": "string"
842842
},
843843
"oci_reference": {
@@ -1346,17 +1346,17 @@
13461346
"/v1alpha/projects/{projectId}/pull-credentials": {
13471347
"get": {
13481348
"description": "Returns all the current OCI image registry pull credential configurations for a project.",
1349-
"operationId": "ListPullSecrets",
1349+
"operationId": "ListPullCredentials",
13501350
"responses": {
13511351
"200": {
13521352
"content": {
13531353
"application/json": {
13541354
"schema": {
1355-
"$ref": "#/components/schemas/ListPullSecrets"
1355+
"$ref": "#/components/schemas/ListPullCredentials"
13561356
}
13571357
}
13581358
},
1359-
"description": "OCI registry pull secret configurations."
1359+
"description": "OCI registry pull credential configurations."
13601360
},
13611361
"401": {
13621362
"$ref": "#/components/responses/unauthorized"
@@ -1390,12 +1390,12 @@
13901390
],
13911391
"post": {
13921392
"description": "Create a new OCI image registry pull credential configuration.",
1393-
"operationId": "CreatePullSecret",
1393+
"operationId": "CreatePullCredential",
13941394
"requestBody": {
13951395
"content": {
13961396
"application/json": {
13971397
"schema": {
1398-
"$ref": "#/components/schemas/CreatePullSecretPayload"
1398+
"$ref": "#/components/schemas/CreatePullCredentialPayload"
13991399
}
14001400
}
14011401
},
@@ -1406,11 +1406,11 @@
14061406
"content": {
14071407
"application/json": {
14081408
"schema": {
1409-
"$ref": "#/components/schemas/PullSecret"
1409+
"$ref": "#/components/schemas/PullCredential"
14101410
}
14111411
}
14121412
},
1413-
"description": "OCI registry pull secret configuration set successfully"
1413+
"description": "OCI registry pull credential configuration set successfully"
14141414
},
14151415
"401": {
14161416
"$ref": "#/components/responses/unauthorized"
@@ -1440,11 +1440,11 @@
14401440
},
14411441
"/v1alpha/projects/{projectId}/pull-credentials/{pullCredentialId}": {
14421442
"delete": {
1443-
"description": "Removes the OCI image pull secret registry configuration.",
1444-
"operationId": "DeletePullSecret",
1443+
"description": "Removes the OCI image pull credential registry configuration.",
1444+
"operationId": "DeletePullCredential",
14451445
"responses": {
14461446
"204": {
1447-
"description": "OCI registry pull secret configuration removed successfully"
1447+
"description": "OCI registry pull credential configuration removed successfully"
14481448
},
14491449
"401": {
14501450
"$ref": "#/components/responses/unauthorized"
@@ -1473,17 +1473,17 @@
14731473
},
14741474
"get": {
14751475
"description": "Returns the current OCI image registry pull credential configuration.",
1476-
"operationId": "GetPullSecret",
1476+
"operationId": "GetPullCredential",
14771477
"responses": {
14781478
"200": {
14791479
"content": {
14801480
"application/json": {
14811481
"schema": {
1482-
"$ref": "#/components/schemas/PullSecret"
1482+
"$ref": "#/components/schemas/PullCredential"
14831483
}
14841484
}
14851485
},
1486-
"description": "OCI registry pull secret configuration"
1486+
"description": "OCI registry pull credential configuration"
14871487
},
14881488
"401": {
14891489
"$ref": "#/components/responses/unauthorized"
@@ -1520,12 +1520,12 @@
15201520
],
15211521
"put": {
15221522
"description": "Updates the OCI image registry pull credential configuration.",
1523-
"operationId": "UpdatePullSecret",
1523+
"operationId": "UpdatePullCredential",
15241524
"requestBody": {
15251525
"content": {
15261526
"application/json": {
15271527
"schema": {
1528-
"$ref": "#/components/schemas/UpdatePullSecretPayload"
1528+
"$ref": "#/components/schemas/UpdatePullCredentialPayload"
15291529
}
15301530
}
15311531
},
@@ -1536,11 +1536,11 @@
15361536
"content": {
15371537
"application/json": {
15381538
"schema": {
1539-
"$ref": "#/components/schemas/PullSecret"
1539+
"$ref": "#/components/schemas/PullCredential"
15401540
}
15411541
}
15421542
},
1543-
"description": "OCI registry pull secret configuration updated successfully"
1543+
"description": "OCI registry pull credential configuration updated successfully"
15441544
},
15451545
"401": {
15461546
"$ref": "#/components/responses/unauthorized"

0 commit comments

Comments
 (0)