FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
nvcf-go/functionmanagementfunctionversion.go at main · brevdev/nvcf-go · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
brevdev
/
nvcf-go
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
nvcf-go
/
functionmanagementfunctionversion.go
Copy path
More file actions
More file actions
Latest commit
History
History
History
102 lines (92 loc) · 4.27 KB
Breadcrumbs
nvcf-go
/
functionmanagementfunctionversion.go
Copy path
File metadata and controls
102 lines (92 loc) · 4.27 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
package
nvidiacloudfunctions
import
(
"context"
"errors"
"fmt"
"net/http"
"github.com/brevdev/nvcf-go/internal/apijson"
"github.com/brevdev/nvcf-go/internal/param"
"github.com/brevdev/nvcf-go/internal/requestconfig"
"github.com/brevdev/nvcf-go/option"
"github.com/brevdev/nvcf-go/shared"
)
// FunctionManagementFunctionVersionService contains methods and other services
// that help with interacting with the nvidia-cloud-functions API.
//
// Note, unlike clients, this service does not read variables from the environment
// automatically. You should not instantiate this service directly, and instead use
// the [NewFunctionManagementFunctionVersionService] method instead.
type
FunctionManagementFunctionVersionService
struct
{
Options
[]option.
RequestOption
}
// NewFunctionManagementFunctionVersionService generates a new service that applies
// the given options to each request. These options are applied after the parent
// client's options (if there is one), and before any request-specific options.
func
NewFunctionManagementFunctionVersionService
(
opts
...
option.
RequestOption
) (
r
*
FunctionManagementFunctionVersionService
) {
r
=
&
FunctionManagementFunctionVersionService
{}
r
.
Options
=
opts
return
}
// Retrieves detailed information of the specified function version 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.
func
(
r
*
FunctionManagementFunctionVersionService
)
Get
(
ctx
context.
Context
,
functionID
string
,
functionVersionID
string
,
opts
...
option.
RequestOption
) (
res
*
shared.
FunctionResponse
,
err
error
) {
opts
=
append
(
r
.
Options
[:],
opts
...
)
if
functionID
==
""
{
err
=
errors
.
New
(
"missing required functionId parameter"
)
return
}
if
functionVersionID
==
""
{
err
=
errors
.
New
(
"missing required functionVersionId parameter"
)
return
}
path
:=
fmt
.
Sprintf
(
"v2/nvcf/functions/%s/versions/%s"
,
functionID
,
functionVersionID
)
err
=
requestconfig
.
ExecuteNewRequest
(
ctx
,
http
.
MethodGet
,
path
,
nil
,
&
res
,
opts
...
)
return
}
// Updates metadata, such as tags, of the specified function version within the
// authenticated NVIDIA Cloud Account. Values specified in the payload completely
// override the existing values. Requires a bearer token with 'update_function'
// scope in the HTTP Authorization header.
func
(
r
*
FunctionManagementFunctionVersionService
)
Update
(
ctx
context.
Context
,
functionID
string
,
functionVersionID
string
,
body
FunctionManagementFunctionVersionUpdateParams
,
opts
...
option.
RequestOption
) (
res
*
shared.
FunctionResponse
,
err
error
) {
opts
=
append
(
r
.
Options
[:],
opts
...
)
if
functionID
==
""
{
err
=
errors
.
New
(
"missing required functionId parameter"
)
return
}
if
functionVersionID
==
""
{
err
=
errors
.
New
(
"missing required functionVersionId parameter"
)
return
}
path
:=
fmt
.
Sprintf
(
"v2/nvcf/metadata/functions/%s/versions/%s"
,
functionID
,
functionVersionID
)
err
=
requestconfig
.
ExecuteNewRequest
(
ctx
,
http
.
MethodPut
,
path
,
body
,
&
res
,
opts
...
)
return
}
// Deletes the specified function version in the authenticated NVIDIA Cloud
// Account. Requires a bearer token with 'delete_function' scope in the HTTP
// Authorization header. If the function version is public, then Account Admin
// cannot delete the function.
func
(
r
*
FunctionManagementFunctionVersionService
)
Delete
(
ctx
context.
Context
,
functionID
string
,
functionVersionID
string
,
opts
...
option.
RequestOption
) (
err
error
) {
opts
=
append
(
r
.
Options
[:],
opts
...
)
opts
=
append
([]option.
RequestOption
{
option
.
WithHeader
(
"Accept"
,
""
)},
opts
...
)
if
functionID
==
""
{
err
=
errors
.
New
(
"missing required functionId parameter"
)
return
}
if
functionVersionID
==
""
{
err
=
errors
.
New
(
"missing required functionVersionId parameter"
)
return
}
path
:=
fmt
.
Sprintf
(
"v2/nvcf/functions/%s/versions/%s"
,
functionID
,
functionVersionID
)
err
=
requestconfig
.
ExecuteNewRequest
(
ctx
,
http
.
MethodDelete
,
path
,
nil
,
nil
,
opts
...
)
return
}
type
FunctionManagementFunctionVersionUpdateParams
struct
{
// Set of tags provided by user
Tags
param.
Field
[[]
string
]
`json:"tags"`
}
func
(
r
FunctionManagementFunctionVersionUpdateParams
)
MarshalJSON
() (
data
[]
byte
,
err
error
) {
return
apijson
.
MarshalRoot
(
r
)
}
Back
|
FazBrowse Home
|
New Git URL