-
Notifications
You must be signed in to change notification settings - Fork 5
/
openapi.yaml
2769 lines (2769 loc) · 90.5 KB
/
openapi.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.1
info:
title: Cloud Functions
description: >-
Since its founding in 1993, NVIDIA (NASDAQ: NVDA) has been a pioneer in
accelerated computing. The company's invention of the GPU in 1999 sparked
the growth of the PC gaming market, redefined computer graphics, ignited the
era of modern AI and is fueling the creation of the metaverse. NVIDIA is now
a full-stack computing company with data-center-scale offerings that are
reshaping industry.
version: 2.87.3
termsOfService: https://www.nvidia.com/en-us/legal_info
contact:
name: NVIDIA
url: https://www.nvidia.com/
x-konfig-ignore:
object-with-no-properties: true
servers:
- description: Generated server url
url: https://api.nvcf.nvidia.com
tags:
- description: >-
Defines endpoints related to associating authorized accounts with a
function for Account Admins. All the endpoints defined in this API
require a bearer token with 'authorize_clients' scope in HTTP
Authorization header.
name: Authorized Accounts
- description: >-
Defines Function Management endpoints for Account Admins. All tne
endpoints defined in this API require a bearer token or an api-key with
appropriate scope in the HTTP Authorization header.
name: Function Management
- description: >-
Defines Asset Management endpoints for Account Admins/Users. All the
endpoints defined in this API require a bearer token in the HTTP
Authorization header with 'invoke_function' scope.
name: Asset Management
- description: >-
Defines Function Deployment endpoints for Account Admins. All tne
endpoints defined in this API require a bearer token with
'deploy_function' scope in the HTTP Authorization header.
name: Function Deployment
- description: >-
Defines function pass-through invocation endpoints where the invocation
payload is passed as-is without any wrapper. All tne endpoints defined in
this API require either a bearer token or an api-key with
'invoke_function' scope in the HTTP Authorization header.
name: Function Invocation
- description: >-
Defines endpoints that use an envelope to wrap the invocation payload for
Account Admins/Users. All the endpoints defined in this API require either
a bearer token or an api-key in the HTTP Authorization header with
'invoke_function' scope. These endpoints have been deprecated. Please use
pass-through function invocation endpoints.
name: Envelope Function Invocation
- description: >-
Defines Queue Details endpoints for Account Admins/Users. All tne
endpoints defined in this API require either a bearer token or an api-key
with 'queue_details' scope in the HTTP Authorization header.
name: Queue Details
- description: >-
Defines endpoints to list Cluster Groups and GPUs for Account Admins. All
tne endpoints defined in this API require a bearer token with
'list_cluster_groups' scope in the HTTP Authorization header.
name: Cluster Groups and GPUs
- name: Health
paths:
/v2/nvcf/deployments/functions/{functionId}/versions/{functionVersionId}:
get:
tags:
- Function Deployment
summary: Get Function Deployment Details
operationId: FunctionDeployment_details
description: >-
Allows Account Admins to retrieve the deployment details of the
specified function version. Access to this endpoint mandates a bearer
token with 'deploy_function' scope in the HTTP Authorization header.
parameters:
- description: Function id
name: functionId
in: path
required: true
schema:
type: string
format: uuid
- description: Function version id
name: functionVersionId
in: path
required: true
schema:
type: string
format: uuid
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/DeploymentResponse'
put:
tags:
- Function Deployment
summary: Update Function Deployment
operationId: FunctionDeployment_updateSpecs
description: >-
Updates the deployment specs of the specified function version. It's
important to note that GPU type and backend configurations cannot be
modified through this endpoint. If the specified function is public,
then Account Admin cannot perform this operation. Access to this
endpoint mandates a bearer token with 'deploy_function' scope in the
HTTP Authorization header.
parameters:
- description: Function id
name: functionId
in: path
required: true
schema:
type: string
format: uuid
- description: Function version id
name: functionVersionId
in: path
required: true
schema:
type: string
format: uuid
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/FunctionDeploymentRequest'
required: true
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/DeploymentResponse'
post:
tags:
- Function Deployment
summary: Deploy Function
operationId: FunctionDeployment_initiateDeploymentForVersion
description: >-
Initiates deployment for the specified function version. Upon invocation
of this endpoint, the function's status transitions to 'DEPLOYING'. If
the specified function version is public, then Account Admin cannot
perform this operation. Access to this endpoint mandates a bearer token
with 'deploy_function' scope in the HTTP Authorization header.
parameters:
- description: Function id
name: functionId
in: path
required: true
schema:
type: string
format: uuid
- description: Function version id
name: functionVersionId
in: path
required: true
schema:
type: string
format: uuid
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/FunctionDeploymentRequest'
required: true
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/DeploymentResponse'
delete:
tags:
- Function Deployment
summary: Delete Function Deployment
operationId: FunctionDeployment_deleteByIdAndVersion
description: >-
Deletes the deployment associated with the specified function. Upon
deletion, any active instances will be terminated, and the function's
status will transition to 'INACTIVE'. To undeploy a function version
gracefully, specify 'graceful=true' query parameter, allowing current
tasks to complete before terminating the instances. If the specified
function version is public, then Account Admin cannot perform this
operation. Access to this endpoint mandates a bearer token with
'deploy_function' scope in the HTTP Authorization header.
parameters:
- description: Function id
name: functionId
in: path
required: true
schema:
type: string
format: uuid
- description: Function version id
name: functionVersionId
in: path
required: true
schema:
type: string
format: uuid
- description: Query param to deactivate function for graceful shutdown
name: graceful
in: query
required: false
schema:
type: boolean
default: false
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/FunctionResponse'
/v2/nvcf/pexec/functions/{functionId}:
post:
tags:
- Function Invocation
summary: Call Function
operationId: FunctionInvocation_invokeFunction
description: >-
Invokes the specified function that was successfully deployed. If the
version is not specified, any active function versions will handle the
request. If the version is specified in the URI, then the request is
exclusively processed by the designated version of the function. By
default, this endpoint will block for 5 seconds. If the request is not
fulfilled before the timeout, it's status is considered in-progress or
pending and the response includes HTTP status code 202 with an
invocation request ID, indicating that the client should commence
polling for the result using the invocation request ID. Access to this
endpoint mandates inclusion of either a bearer token or an api-key with
'invoke_function' scope in the HTTP Authorization header. Additionally,
this endpoint has the capability to provide updates on the progress of
the request, contingent upon the workload's provision of such
information. In-progress responses are returned in order. If no
in-progress response is received during polling you will receive the
most recent in-progress response. Only the first 256 unread in-progress
messages are kept.
parameters:
- name: NVCF-INPUT-ASSET-REFERENCES
in: header
required: false
schema:
type: array
items:
type: string
- name: functionId
in: path
required: true
schema:
type: string
format: uuid
- name: NVCF-POLL-SECONDS
in: header
required: false
schema:
maximum: 300
type: integer
format: int32
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/FunctionInvocationInvokeFunctionRequest'
required: true
responses:
'200':
description: Invocation is fulfilled
headers:
NVCF-REQID:
description: Invocation Request Id
style: simple
schema:
type: string
NVCF-PERCENT-COMPLETE:
description: Percentage complete
style: simple
schema:
type: string
NVCF-STATUS:
description: Invocation status
style: simple
schema:
type: string
content:
application/json:
schema:
$ref: >-
#/components/schemas/FunctionInvocationInvokeFunction200Response
text/event-stream:
schema:
$ref: '#/components/schemas/FunctionInvocationInvokeFunctionResponse'
'202':
description: Result is pending. Client should poll using the requestId.
headers:
NVCF-REQID:
description: Invocation Request Id
style: simple
schema:
type: string
NVCF-PERCENT-COMPLETE:
description: Percentage complete
style: simple
schema:
type: string
NVCF-STATUS:
description: Invocation status
style: simple
schema:
type: string
content:
application/json:
schema:
$ref: >-
#/components/schemas/FunctionInvocationInvokeFunction202Response
'302':
description: >-
Client should use the URL specified in the 'Location' response
header to fetch large result.
headers:
NVCF-REQID:
description: Invocation Request Id
style: simple
schema:
type: string
NVCF-PERCENT-COMPLETE:
description: Percentage complete
style: simple
schema:
type: string
NVCF-STATUS:
description: Invocation status
style: simple
schema:
type: string
Location:
description: URL to get the result
style: simple
schema:
type: string
content:
application/json:
schema:
$ref: >-
#/components/schemas/FunctionInvocationInvokeFunction302Response
'402':
description: >-
Cloud credits expired for public functions. Please contact NVIDIA
representatives.
content:
application/json:
schema:
$ref: >-
#/components/schemas/FunctionInvocationInvokeFunction402Response
'403':
description: >-
Either missing scope in the auth(SSA JWT / SAK) token and/or missing
resource entry in the SAK for the function.
content:
application/json:
schema:
$ref: >-
#/components/schemas/FunctionInvocationInvokeFunction403Response
/v2/nvcf/pexec/functions/{functionId}/versions/{versionId}:
post:
tags:
- Function Invocation
summary: Call Function
operationId: FunctionInvocation_invokeFunction
description: >-
Invokes the specified function that was successfully deployed. If the
version is not specified, any active function versions will handle the
request. If the version is specified in the URI, then the request is
exclusively processed by the designated version of the function. By
default, this endpoint will block for 5 seconds. If the request is not
fulfilled before the timeout, it's status is considered in-progress or
pending and the response includes HTTP status code 202 with an
invocation request ID, indicating that the client should commence
polling for the result using the invocation request ID. Access to this
endpoint mandates inclusion of either a bearer token or an api-key with
'invoke_function' scope in the HTTP Authorization header. Additionally,
this endpoint has the capability to provide updates on the progress of
the request, contingent upon the workload's provision of such
information. In-progress responses are returned in order. If no
in-progress response is received during polling you will receive the
most recent in-progress response. Only the first 256 unread in-progress
messages are kept.
parameters:
- name: NVCF-INPUT-ASSET-REFERENCES
in: header
required: false
schema:
type: array
items:
type: string
- name: functionId
in: path
required: true
schema:
type: string
format: uuid
- name: versionId
in: path
required: true
schema:
type: string
format: uuid
- name: NVCF-POLL-SECONDS
in: header
required: false
schema:
maximum: 300
type: integer
format: int32
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/FunctionInvocationInvokeFunctionRequest1'
required: true
responses:
'200':
description: Invocation is fulfilled
headers:
NVCF-REQID:
description: Invocation Request Id
style: simple
schema:
type: string
NVCF-PERCENT-COMPLETE:
description: Percentage complete
style: simple
schema:
type: string
NVCF-STATUS:
description: Invocation status
style: simple
schema:
type: string
content:
application/json:
schema:
$ref: >-
#/components/schemas/FunctionInvocationInvokeFunction200Response
text/event-stream:
schema:
$ref: >-
#/components/schemas/FunctionInvocationInvokeFunction200Response1
'202':
description: Result is pending. Client should poll using the requestId.
headers:
NVCF-REQID:
description: Invocation Request Id
style: simple
schema:
type: string
NVCF-PERCENT-COMPLETE:
description: Percentage complete
style: simple
schema:
type: string
NVCF-STATUS:
description: Invocation status
style: simple
schema:
type: string
content:
application/json:
schema:
$ref: >-
#/components/schemas/FunctionInvocationInvokeFunction202Response
'302':
description: >-
Client should use the URL specified in the 'Location' response
header to fetch large result.
headers:
NVCF-REQID:
description: Invocation Request Id
style: simple
schema:
type: string
NVCF-PERCENT-COMPLETE:
description: Percentage complete
style: simple
schema:
type: string
NVCF-STATUS:
description: Invocation status
style: simple
schema:
type: string
Location:
description: URL to get the result
style: simple
schema:
type: string
content:
application/json:
schema:
$ref: >-
#/components/schemas/FunctionInvocationInvokeFunction302Response
'402':
description: >-
Cloud credits expired for public functions. Please contact NVIDIA
representatives.
content:
application/json:
schema:
$ref: >-
#/components/schemas/FunctionInvocationInvokeFunction402Response
'403':
description: >-
Either missing scope in the auth(SSA JWT / SAK) token and/or missing
resource entry in the SAK for the function.
content:
application/json:
schema:
$ref: >-
#/components/schemas/FunctionInvocationInvokeFunction403Response
/v2/nvcf/exec/functions/{functionId}:
post:
tags:
- Envelope Function Invocation
summary: Call Function
operationId: EnvelopeFunctionInvocation_callFunction
description: >-
Invokes the specified function that was successfully deployed. If the
version is not specified, any active function versions will handle the
request. If the version is specified in the URI, then the request is
exclusively processed by the designated version of the function. By
default, this endpoint will block for 5 seconds. If the request is not
fulfilled before the timeout, it's status is considered in-progress or
pending and the response includes HTTP status code 202 with an
invocation request ID, indicating that the client should commence
polling for the result using the invocation request ID. Access to this
endpoint mandates inclusion of either a bearer token or an api-key with
'invoke_function' scope in the HTTP Authorization header. Additionally,
this endpoint has the capability to provide updates on the progress of
the request, contingent upon the workload's provision of such
information. In-progress responses are returned in order. If no
in-progress response is received during polling you will receive the
most recent in-progress response. Only the first 256 unread in-progress
messages are kept.
parameters:
- name: functionId
in: path
required: true
schema:
type: string
format: uuid
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/InvokeFunctionRequest'
required: true
responses:
'200':
description: Invocation is fulfilled
content:
application/json:
schema:
$ref: '#/components/schemas/InvokeFunctionResponse'
'202':
description: Result is pending. Client should poll using the requestId.
content:
application/json:
schema:
$ref: '#/components/schemas/InvokeFunctionResponse'
'302':
description: >-
Client should use the URL specified in the 'Location' response
header to fetch large result.
headers:
Location:
style: simple
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/InvokeFunctionResponse'
'402':
description: >-
Cloud credits expired for public functions. Please contact NVIDIA
representatives.
content:
application/json:
schema:
$ref: '#/components/schemas/InvokeFunctionResponse'
'403':
description: >-
Either missing scope in the auth(SSA JWT / SAK) token and/or missing
resource entry in the SAK for the function.
content:
application/json:
schema:
$ref: '#/components/schemas/InvokeFunctionResponse'
deprecated: true
/v2/nvcf/exec/functions/{functionId}/versions/{versionId}:
post:
tags:
- Envelope Function Invocation
summary: Call Function
operationId: EnvelopeFunctionInvocation_invokeFunction
description: >-
Invokes the specified function that was successfully deployed. If the
version is not specified, any active function versions will handle the
request. If the version is specified in the URI, then the request is
exclusively processed by the designated version of the function. By
default, this endpoint will block for 5 seconds. If the request is not
fulfilled before the timeout, it's status is considered in-progress or
pending and the response includes HTTP status code 202 with an
invocation request ID, indicating that the client should commence
polling for the result using the invocation request ID. Access to this
endpoint mandates inclusion of either a bearer token or an api-key with
'invoke_function' scope in the HTTP Authorization header. Additionally,
this endpoint has the capability to provide updates on the progress of
the request, contingent upon the workload's provision of such
information. In-progress responses are returned in order. If no
in-progress response is received during polling you will receive the
most recent in-progress response. Only the first 256 unread in-progress
messages are kept.
parameters:
- name: functionId
in: path
required: true
schema:
type: string
format: uuid
- name: versionId
in: path
required: true
schema:
type: string
format: uuid
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/InvokeFunctionRequest'
required: true
responses:
'200':
description: Invocation is fulfilled
content:
application/json:
schema:
$ref: '#/components/schemas/InvokeFunctionResponse'
'202':
description: Result is pending. Client should poll using the requestId.
content:
application/json:
schema:
$ref: '#/components/schemas/InvokeFunctionResponse'
'302':
description: >-
Client should use the URL specified in the 'Location' response
header to fetch large result.
headers:
Location:
style: simple
schema:
type: string
content:
application/json:
schema:
$ref: '#/components/schemas/InvokeFunctionResponse'
'402':
description: >-
Cloud credits expired for public functions. Please contact NVIDIA
representatives.
content:
application/json:
schema:
$ref: '#/components/schemas/InvokeFunctionResponse'
'403':
description: >-
Either missing scope in the auth(SSA JWT / SAK) token and/or missing
resource entry in the SAK for the function.
content:
application/json:
schema:
$ref: '#/components/schemas/InvokeFunctionResponse'
deprecated: true
/v2/nvcf/functions/{functionId}/versions:
get:
tags:
- Function Management
summary: List Function Versions
operationId: FunctionManagement_listFunctionVersions
description: >-
Lists details of all the versions of the specified function in the
authenticated NVIDIA Cloud Account. Requires either a bearer token or
an api-key with 'list_functions' or 'list_functions_details' scopes in
the HTTP Authorization header.
parameters:
- description: Function id
name: functionId
in: path
required: true
schema:
type: string
format: uuid
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/ListFunctionsResponse'
post:
tags:
- Function Management
summary: Create Function Version
operationId: FunctionManagement_createFunctionVersion
description: >-
Creates a version of the specified function within the authenticated
NVIDIA Cloud Account. Requires a bearer token with 'register_function'
scope in the HTTP Authorization header.
parameters:
- description: Function id
name: functionId
in: path
required: true
schema:
type: string
format: uuid
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreateFunctionRequest'
required: true
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/CreateFunctionResponse'
/v2/nvcf/functions:
get:
tags:
- Function Management
summary: List Functions
operationId: FunctionManagement_listFunctions
description: >-
Lists all the functions associated with the authenticated NVIDIA Cloud
Account. Requires either a bearer token or an api-key with
'list_functions' or 'list_functions_details' scopes in the HTTP
Authorization header.
parameters:
- description: >-
Query param 'visibility' indicates the kind of functions to be
included in the response.
name: visibility
in: query
required: false
schema:
uniqueItems: true
type: array
items:
type: string
enum:
- authorized
- private
- public
default:
- authorized
- private
- public
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/ListFunctionsResponse'
post:
tags:
- Function Management
summary: Create Function
operationId: FunctionManagement_registerNewFunction
description: >-
Creates a new function within the authenticated NVIDIA Cloud Account.
Requires a bearer token with 'register_function' scope in the HTTP
Authorization header.
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreateFunctionRequest'
required: true
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/CreateFunctionResponse'
/v2/nvcf/authorizations/functions/{functionId}/versions/{functionVersionId}:
get:
tags:
- Authorized Accounts
summary: Get Account Authorizations For Function Version
operationId: AuthorizedAccounts_functionVersionAuthorizations
description: >-
Gets NVIDIA Cloud Account IDs that are authorized to invoke specified
function version. Response includes authorized accounts that were added
specifically to the function version and the inherited authorized
accounts that were added at the function level. Access to this
functionality mandates the inclusion of a bearer token with the
'authorize_clients' scope in the HTTP Authorization header
parameters:
- description: Function id
name: functionId
in: path
required: true
schema:
type: string
format: uuid
- description: Function version
name: functionVersionId
in: path
required: true
schema:
type: string
format: uuid
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/AuthorizedPartiesResponse'
post:
tags:
- Authorized Accounts
summary: Authorize Accounts To Invoke Function Version
operationId: AuthorizedAccounts_authorizeFunctionAccounts
description: >-
Authorizes additional NVIDIA Cloud Accounts to invoke a specific
function version. By default, a function belongs to the NVIDIA Cloud
Account that created it, and the credentials used for function
invocation must reference the same NVIDIA Cloud Account. Upon
invocation of this endpoint, any existing authorized accounts will be
overwritten by the newly specified authorized accounts. Access to this
functionality mandates the inclusion of a bearer token with the
'authorize_clients' scope in the HTTP Authorization header
parameters:
- description: Function id
name: functionId
in: path
required: true
schema:
type: string
format: uuid
- description: Function version id
name: functionVersionId
in: path
required: true
schema:
type: string
format: uuid
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/AuthorizedPartiesRequest'
required: true
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/AuthorizedPartiesResponse'
delete:
tags:
- Authorized Accounts
summary: Delete All Extra Authorizations For Function Version
operationId: AuthorizedAccounts_deleteExtraForFunctionVersion
description: >-
Deletes all the authorized accounts that are directly associated with
the specified function version. Authorized parties that are inherited
by the function version are not deleted. If the specified function
version is public, then Account Admin cannot perform this operation.
Access to this functionality mandates the inclusion of a bearer token
with the 'authorize_clients' scope in the HTTP Authorization header
parameters:
- description: Function id
name: functionId
in: path
required: true
schema:
type: string
format: uuid
- description: Function version
name: functionVersionId
in: path
required: true
schema:
type: string
format: uuid
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/AuthorizedPartiesResponse'
/v2/nvcf/authorizations/functions/{functionId}:
get:
tags:
- Authorized Accounts
summary: List Account Authorizations For Function
operationId: AuthorizedAccounts_listForFunction
description: >-
Lists NVIDIA Cloud Account IDs that are authorized to invoke any version
of the specified function. The response includes an array showing
authorized accounts for each version. Individual versions of a function
can have their own authorized accounts. So, each object in the array
can have different authorized accounts listed. Access to this
functionality mandates the inclusion of a bearer token with the
'authorize_clients' scope in the HTTP Authorization header
parameters:
- description: Function id
name: functionId
in: path
required: true
schema:
type: string
format: uuid
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/ListAuthorizedPartiesResponse'
post:
tags:
- Authorized Accounts
summary: Authorize Accounts To Invoke Function
operationId: AuthorizedAccounts_authorizeFunctionAccounts
description: >-
Authorizes additional NVIDIA Cloud Accounts to invoke any version of
the specified function. By default, a function belongs to the NVIDIA
Cloud Account that created it, and the credentials used for function
invocation must reference the same NVIDIA Cloud Account. Upon
invocation of this endpoint, any existing authorized accounts will be
overwritten by the newly specified authorized accounts. Access to this
functionality mandates the inclusion of a bearer token with the
'authorize_clients' scope in the HTTP Authorization header
parameters:
- description: Function id
name: functionId
in: path
required: true
schema:
type: string
format: uuid
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/AuthorizedPartiesRequest'
required: true
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/AuthorizedPartiesResponse'
delete:
tags:
- Authorized Accounts
summary: Delete All Extra Authorizations For Function
operationId: AuthorizedAccounts_deleteAllExtraForFunction
description: >-
Deletes all the extra NVIDIA Cloud Accounts that were authorized to
invoke the function and all its versions. If a function version has its
own set of authorized accounts, those are not deleted. If the specified
function is public, then Account Admin cannot perform this operation.
Access to this functionality mandates the inclusion of a bearer token
with the 'authorize_clients' scope in the HTTP Authorization header
parameters:
- description: Function id
name: functionId
in: path
required: true