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
use ;
use *;
/// Compute category classification for templates.
///
/// Templates are categorized based on their primary compute requirements,
/// which helps with resource allocation, pricing, and filtering in the RunPod ecosystem.
///
/// # Categories
///
/// - **NVIDIA**: Templates optimized for NVIDIA GPU acceleration
/// - **AMD**: Templates optimized for AMD GPU acceleration
/// - **CPU**: Templates for CPU-only compute workloads
/// Template resource containing deployment configuration and metadata.
///
/// A Template is a reusable configuration that defines how Pods and Serverless endpoints
/// should be deployed, including Docker image, resource requirements, environment variables,
/// and networking settings.
///
/// # Template Lifecycle
///
/// 1. **Creation**: Define template with [`TemplateCreateInput`]
/// 2. **Usage**: Reference template when creating Pods or Serverless endpoints
/// 3. **Updates**: Modify template with [`TemplateUpdateInput`] (triggers rolling releases)
/// 4. **Sharing**: Make public to share with community and earn revenue
/// 5. **Management**: Track usage statistics and earnings through template metadata
///
/// # Revenue Model
///
/// Public templates can generate revenue for their creators:
///
/// - Users pay standard RunPod rates for compute resources
/// - Template creators earn a percentage of compute costs
/// - Earnings are tracked in the `earned` field
/// Collection of template records.
///
/// This type alias represents the standard response format when listing templates,
/// containing an array of [`Template`] instances with applied filters and access controls.
pub type Templates = ;
/// Input parameters for creating new templates.
///
/// Use this struct to define all aspects of a new template, from basic identification
/// to detailed runtime configuration. All fields except `name` and `image_name` are optional,
/// allowing for flexible template creation with sensible defaults.
///
/// # Required Fields
///
/// - `name`: Unique, descriptive template name
/// - `image_name`: Docker image for container deployment
///
/// # Default Behavior
///
/// When optional fields are omitted:
/// - `category`: Defaults to `TemplateCategory::Nvidia`
/// - `container_disk_in_gb`: Defaults to 50 GB
/// - `volume_in_gb`: Defaults to 20 GB
/// - `volume_mount_path`: Defaults to "/workspace"
/// - `is_public`: Defaults to `false` (private template)
/// - `is_serverless`: Defaults to `false` (Pod template)
/// - `ports`: Defaults to `["8888/http", "22/tcp"]`
///
/// # Examples
///
/// ```rust
/// use runpod_sdk::model::{TemplateCreateInput, TemplateCategory};
///
/// let basic_template = TemplateCreateInput {
/// name: "My Basic Template".to_string(),
/// image_name: "python:3.9".to_string(),
/// ..Default::default()
/// };
/// ```
/// Input parameters for updating existing templates.
///
/// Use this struct to modify template configuration. Template updates automatically
/// trigger rolling releases for any associated Serverless endpoints, ensuring
/// deployed instances use the latest configuration.
///
/// # Rolling Release Behavior
///
/// When a template is updated:
/// 1. New instances are created with the updated configuration
/// 2. Traffic is gradually shifted to new instances
/// 3. Old instances are gracefully terminated
/// 4. The process ensures zero-downtime updates for Serverless endpoints
///
/// # Partial Updates
///
/// All fields are optional, allowing for partial updates. Only specified fields
/// will be changed; unspecified fields retain their current values.
///
/// # Examples
///
/// ```rust
/// use runpod_sdk::model::TemplateUpdateInput;
///
/// // Update only the Docker image
/// let image_update = TemplateUpdateInput {
/// image_name: Some("myapp:v2.0.0".to_string()),
/// ..Default::default()
/// };
///
/// // Update storage allocation and environment variables
/// let config_update = TemplateUpdateInput {
/// container_disk_in_gb: Some(100),
/// volume_in_gb: Some(50),
/// env: Some({
/// let mut env = std::collections::HashMap::new();
/// env.insert("MODEL_VERSION".to_string(), "v2.0".to_string());
/// env.insert("BATCH_SIZE".to_string(), "32".to_string());
/// env
/// }),
/// ..Default::default()
/// };
/// ```
/// Query parameters for listing templates with filtering options.
///
/// Control which templates are included in the response based on their
/// type, visibility, and binding status. All parameters are optional
/// and default to `false`, meaning only your private templates are returned by default.
///
/// # Filtering Strategy
///
/// Templates are categorized into different groups:
/// - **Private Templates**: Your own private templates (always included)
/// - **Public Templates**: Community-created public templates
/// - **RunPod Templates**: Official templates maintained by RunPod
/// - **Endpoint-bound Templates**: Templates currently used by Serverless endpoints
///
/// # Examples
///
/// ```rust
/// use runpod_sdk::model::ListTemplatesQuery;
///
/// // Get all available templates (private + public + official)
/// let all_templates = ListTemplatesQuery {
/// include_public_templates: Some(true),
/// include_runpod_templates: Some(true),
/// include_endpoint_bound_templates: Some(true),
/// };
///
/// // Get only official RunPod templates
/// let official_only = ListTemplatesQuery {
/// include_runpod_templates: Some(true),
/// ..Default::default()
/// };
/// ```
/// Query parameters for retrieving individual templates with filtering options.
///
/// Similar to [`ListTemplatesQuery`] but for single template retrieval.
/// Controls access to templates based on their type and visibility.
/// Useful when you need to access a specific template that might be public or official.
///
/// # Access Control
///
/// By default, only your own private templates are accessible. To access
/// public or official templates, you must explicitly enable the corresponding flags.
///
/// # Examples
///
/// ```rust
/// use runpod_sdk::model::GetTemplateQuery;
///
/// // Access any type of template
/// let query = GetTemplateQuery {
/// include_public_templates: Some(true),
/// include_runpod_templates: Some(true),
/// include_endpoint_bound_templates: Some(true),
/// };
/// ```