-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzone.go
More file actions
215 lines (192 loc) · 7.86 KB
/
zone.go
File metadata and controls
215 lines (192 loc) · 7.86 KB
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
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
package sfcnodes
import (
"context"
"errors"
"fmt"
"net/http"
"slices"
"github.com/sfcompute/nodes-go/internal/apijson"
"github.com/sfcompute/nodes-go/internal/requestconfig"
"github.com/sfcompute/nodes-go/option"
"github.com/sfcompute/nodes-go/packages/respjson"
)
// ZoneService contains methods and other services that help with interacting with
// the sfc-nodes 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 [NewZoneService] method instead.
type ZoneService struct {
Options []option.RequestOption
}
// NewZoneService 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 NewZoneService(opts ...option.RequestOption) (r ZoneService) {
r = ZoneService{}
r.Options = opts
return
}
// List all available zones
func (r *ZoneService) List(ctx context.Context, opts ...option.RequestOption) (res *ZoneListResponse, err error) {
opts = slices.Concat(r.Options, opts)
path := "v0/zones"
err = requestconfig.ExecuteNewRequest(ctx, http.MethodGet, path, nil, &res, opts...)
return
}
// Get detailed information about a specific zone
func (r *ZoneService) Get(ctx context.Context, id string, opts ...option.RequestOption) (res *ZoneGetResponse, err error) {
opts = slices.Concat(r.Options, opts)
if id == "" {
err = errors.New("missing required id parameter")
return
}
path := fmt.Sprintf("v0/zones/%s", id)
err = requestconfig.ExecuteNewRequest(ctx, http.MethodGet, path, nil, &res, opts...)
return
}
type ZoneListResponse struct {
Data []ZoneListResponseData `json:"data" api:"required"`
Object string `json:"object" api:"required"`
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
JSON struct {
Data respjson.Field
Object respjson.Field
ExtraFields map[string]respjson.Field
raw string
} `json:"-"`
}
// Returns the unmodified JSON received from the API
func (r ZoneListResponse) RawJSON() string { return r.JSON.raw }
func (r *ZoneListResponse) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
type ZoneListResponseData struct {
// The available capacity on this cluster, in the shape of consecutive
// "availability rectangles".
AvailableCapacity []ZoneListResponseDataAvailableCapacity `json:"available_capacity" api:"required"`
// Any of "K8s", "VM".
DeliveryType string `json:"delivery_type" api:"required"`
// Any of "H100", "H200".
HardwareType AcceleratorType `json:"hardware_type" api:"required"`
// Any of "Infiniband", "None".
InterconnectType string `json:"interconnect_type" api:"required"`
Name string `json:"name" api:"required"`
Object string `json:"object" api:"required"`
// Any of "NorthAmerica", "AsiaPacific", "EuropeMiddleEastAfrica".
Region string `json:"region" api:"required"`
// User-facing zone name (e.g., "Hayes Valley", "Land's End")
DisplayName string `json:"display_name" api:"nullable"`
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
JSON struct {
AvailableCapacity respjson.Field
DeliveryType respjson.Field
HardwareType respjson.Field
InterconnectType respjson.Field
Name respjson.Field
Object respjson.Field
Region respjson.Field
DisplayName respjson.Field
ExtraFields map[string]respjson.Field
raw string
} `json:"-"`
}
// Returns the unmodified JSON received from the API
func (r ZoneListResponseData) RawJSON() string { return r.JSON.raw }
func (r *ZoneListResponseData) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
type ZoneListResponseDataAvailableCapacity struct {
// Unix timestamp.
EndTimestamp int64 `json:"end_timestamp" api:"required"`
// The number of nodes available during this time period
Quantity int64 `json:"quantity" api:"required"`
// Unix timestamp.
StartTimestamp int64 `json:"start_timestamp" api:"required"`
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
JSON struct {
EndTimestamp respjson.Field
Quantity respjson.Field
StartTimestamp respjson.Field
ExtraFields map[string]respjson.Field
raw string
} `json:"-"`
}
// Returns the unmodified JSON received from the API
func (r ZoneListResponseDataAvailableCapacity) RawJSON() string { return r.JSON.raw }
func (r *ZoneListResponseDataAvailableCapacity) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
type ZoneGetResponse struct {
// The available capacity on this cluster, in the shape of consecutive
// "availability rectangles".
AvailableCapacity []ZoneGetResponseAvailableCapacity `json:"available_capacity" api:"required"`
// Any of "K8s", "VM".
DeliveryType ZoneGetResponseDeliveryType `json:"delivery_type" api:"required"`
// Any of "H100", "H200".
HardwareType AcceleratorType `json:"hardware_type" api:"required"`
// Any of "Infiniband", "None".
InterconnectType ZoneGetResponseInterconnectType `json:"interconnect_type" api:"required"`
Name string `json:"name" api:"required"`
Object string `json:"object" api:"required"`
// Any of "NorthAmerica", "AsiaPacific", "EuropeMiddleEastAfrica".
Region ZoneGetResponseRegion `json:"region" api:"required"`
// User-facing zone name (e.g., "Hayes Valley", "Land's End")
DisplayName string `json:"display_name" api:"nullable"`
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
JSON struct {
AvailableCapacity respjson.Field
DeliveryType respjson.Field
HardwareType respjson.Field
InterconnectType respjson.Field
Name respjson.Field
Object respjson.Field
Region respjson.Field
DisplayName respjson.Field
ExtraFields map[string]respjson.Field
raw string
} `json:"-"`
}
// Returns the unmodified JSON received from the API
func (r ZoneGetResponse) RawJSON() string { return r.JSON.raw }
func (r *ZoneGetResponse) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
type ZoneGetResponseAvailableCapacity struct {
// Unix timestamp.
EndTimestamp int64 `json:"end_timestamp" api:"required"`
// The number of nodes available during this time period
Quantity int64 `json:"quantity" api:"required"`
// Unix timestamp.
StartTimestamp int64 `json:"start_timestamp" api:"required"`
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
JSON struct {
EndTimestamp respjson.Field
Quantity respjson.Field
StartTimestamp respjson.Field
ExtraFields map[string]respjson.Field
raw string
} `json:"-"`
}
// Returns the unmodified JSON received from the API
func (r ZoneGetResponseAvailableCapacity) RawJSON() string { return r.JSON.raw }
func (r *ZoneGetResponseAvailableCapacity) UnmarshalJSON(data []byte) error {
return apijson.UnmarshalRoot(data, r)
}
type ZoneGetResponseDeliveryType string
const (
ZoneGetResponseDeliveryTypeK8s ZoneGetResponseDeliveryType = "K8s"
ZoneGetResponseDeliveryTypeVM ZoneGetResponseDeliveryType = "VM"
)
type ZoneGetResponseInterconnectType string
const (
ZoneGetResponseInterconnectTypeInfiniband ZoneGetResponseInterconnectType = "Infiniband"
ZoneGetResponseInterconnectTypeNone ZoneGetResponseInterconnectType = "None"
)
type ZoneGetResponseRegion string
const (
ZoneGetResponseRegionNorthAmerica ZoneGetResponseRegion = "NorthAmerica"
ZoneGetResponseRegionAsiaPacific ZoneGetResponseRegion = "AsiaPacific"
ZoneGetResponseRegionEuropeMiddleEastAfrica ZoneGetResponseRegion = "EuropeMiddleEastAfrica"
)