-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruntime.go
220 lines (184 loc) · 6.77 KB
/
runtime.go
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
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
package riza
import (
"context"
"errors"
"fmt"
"net/http"
"github.com/riza-io/riza-api-go/internal/apijson"
"github.com/riza-io/riza-api-go/internal/param"
"github.com/riza-io/riza-api-go/internal/requestconfig"
"github.com/riza-io/riza-api-go/option"
)
// RuntimeService contains methods and other services that help with interacting
// with the riza 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 [NewRuntimeService] method instead.
type RuntimeService struct {
Options []option.RequestOption
Revisions *RuntimeRevisionService
}
// NewRuntimeService 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 NewRuntimeService(opts ...option.RequestOption) (r *RuntimeService) {
r = &RuntimeService{}
r.Options = opts
r.Revisions = NewRuntimeRevisionService(opts...)
return
}
// Creates a runtime.
func (r *RuntimeService) New(ctx context.Context, body RuntimeNewParams, opts ...option.RequestOption) (res *Runtime, err error) {
opts = append(r.Options[:], opts...)
path := "v1/runtimes"
err = requestconfig.ExecuteNewRequest(ctx, http.MethodPost, path, body, &res, opts...)
return
}
// Returns a list of runtimes in your project.
func (r *RuntimeService) List(ctx context.Context, opts ...option.RequestOption) (res *RuntimeListResponse, err error) {
opts = append(r.Options[:], opts...)
path := "v1/runtimes"
err = requestconfig.ExecuteNewRequest(ctx, http.MethodGet, path, nil, &res, opts...)
return
}
// Retrieves a runtime.
func (r *RuntimeService) Get(ctx context.Context, id string, opts ...option.RequestOption) (res *Runtime, err error) {
opts = append(r.Options[:], opts...)
if id == "" {
err = errors.New("missing required id parameter")
return
}
path := fmt.Sprintf("v1/runtimes/%s", id)
err = requestconfig.ExecuteNewRequest(ctx, http.MethodGet, path, nil, &res, opts...)
return
}
type Runtime struct {
ID string `json:"id,required"`
Language RuntimeLanguage `json:"language,required"`
Name string `json:"name,required"`
RevisionID string `json:"revision_id,required"`
Status string `json:"status,required"`
AdditionalPythonImports string `json:"additional_python_imports"`
ManifestFile RuntimeManifestFile `json:"manifest_file"`
JSON runtimeJSON `json:"-"`
}
// runtimeJSON contains the JSON metadata for the struct [Runtime]
type runtimeJSON struct {
ID apijson.Field
Language apijson.Field
Name apijson.Field
RevisionID apijson.Field
Status apijson.Field
AdditionalPythonImports apijson.Field
ManifestFile apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *Runtime) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r runtimeJSON) RawJSON() string {
return r.raw
}
type RuntimeLanguage string
const (
RuntimeLanguagePython RuntimeLanguage = "python"
RuntimeLanguageJavascript RuntimeLanguage = "javascript"
)
func (r RuntimeLanguage) IsKnown() bool {
switch r {
case RuntimeLanguagePython, RuntimeLanguageJavascript:
return true
}
return false
}
type RuntimeManifestFile struct {
Contents string `json:"contents,required"`
Name RuntimeManifestFileName `json:"name,required"`
JSON runtimeManifestFileJSON `json:"-"`
}
// runtimeManifestFileJSON contains the JSON metadata for the struct
// [RuntimeManifestFile]
type runtimeManifestFileJSON struct {
Contents apijson.Field
Name apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *RuntimeManifestFile) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r runtimeManifestFileJSON) RawJSON() string {
return r.raw
}
type RuntimeManifestFileName string
const (
RuntimeManifestFileNameRequirementsTxt RuntimeManifestFileName = "requirements.txt"
RuntimeManifestFileNamePackageJson RuntimeManifestFileName = "package.json"
)
func (r RuntimeManifestFileName) IsKnown() bool {
switch r {
case RuntimeManifestFileNameRequirementsTxt, RuntimeManifestFileNamePackageJson:
return true
}
return false
}
type RuntimeListResponse struct {
Runtimes []Runtime `json:"runtimes,required"`
JSON runtimeListResponseJSON `json:"-"`
}
// runtimeListResponseJSON contains the JSON metadata for the struct
// [RuntimeListResponse]
type runtimeListResponseJSON struct {
Runtimes apijson.Field
raw string
ExtraFields map[string]apijson.Field
}
func (r *RuntimeListResponse) UnmarshalJSON(data []byte) (err error) {
return apijson.UnmarshalRoot(data, r)
}
func (r runtimeListResponseJSON) RawJSON() string {
return r.raw
}
type RuntimeNewParams struct {
Language param.Field[RuntimeNewParamsLanguage] `json:"language,required"`
ManifestFile param.Field[RuntimeNewParamsManifestFile] `json:"manifest_file,required"`
Name param.Field[string] `json:"name,required"`
AdditionalPythonImports param.Field[string] `json:"additional_python_imports"`
}
func (r RuntimeNewParams) MarshalJSON() (data []byte, err error) {
return apijson.MarshalRoot(r)
}
type RuntimeNewParamsLanguage string
const (
RuntimeNewParamsLanguagePython RuntimeNewParamsLanguage = "python"
RuntimeNewParamsLanguageJavascript RuntimeNewParamsLanguage = "javascript"
)
func (r RuntimeNewParamsLanguage) IsKnown() bool {
switch r {
case RuntimeNewParamsLanguagePython, RuntimeNewParamsLanguageJavascript:
return true
}
return false
}
type RuntimeNewParamsManifestFile struct {
Contents param.Field[string] `json:"contents,required"`
Name param.Field[RuntimeNewParamsManifestFileName] `json:"name,required"`
}
func (r RuntimeNewParamsManifestFile) MarshalJSON() (data []byte, err error) {
return apijson.MarshalRoot(r)
}
type RuntimeNewParamsManifestFileName string
const (
RuntimeNewParamsManifestFileNameRequirementsTxt RuntimeNewParamsManifestFileName = "requirements.txt"
RuntimeNewParamsManifestFileNamePackageJson RuntimeNewParamsManifestFileName = "package.json"
)
func (r RuntimeNewParamsManifestFileName) IsKnown() bool {
switch r {
case RuntimeNewParamsManifestFileNameRequirementsTxt, RuntimeNewParamsManifestFileNamePackageJson:
return true
}
return false
}