@@ -1598,12 +1598,15 @@ type CreateBackendStageRequest struct {
15981598 PipelineID string `json:"-"`
15991599
16001600 // ScalewayS3: scaleway Object Storage origin bucket (S3) linked to the backend stage.
1601- // Precisely one of ScalewayS3, ScalewayLB must be set.
1601+ // Precisely one of ScalewayS3, ScalewayLB, ScalewayServerlessContainer must be set.
16021602 ScalewayS3 * ScalewayS3BackendConfig `json:"scaleway_s3,omitempty"`
16031603
16041604 // ScalewayLB: scaleway Load Balancer origin linked to the backend stage.
1605- // Precisely one of ScalewayS3, ScalewayLB must be set.
1605+ // Precisely one of ScalewayS3, ScalewayLB, ScalewayServerlessContainer must be set.
16061606 ScalewayLB * ScalewayLBBackendConfig `json:"scaleway_lb,omitempty"`
1607+
1608+ // Precisely one of ScalewayS3, ScalewayLB, ScalewayServerlessContainer must be set.
1609+ ScalewayServerlessContainer * ScalewayServerlessContainerBackendConfig `json:"scaleway_serverless_container,omitempty"`
16071610}
16081611
16091612// CreateCacheStageRequest: create cache stage request.
@@ -2505,15 +2508,18 @@ type UpdateBackendStageRequest struct {
25052508 BackendStageID string `json:"-"`
25062509
25072510 // ScalewayS3: scaleway Object Storage origin bucket (S3) linked to the backend stage.
2508- // Precisely one of ScalewayS3, ScalewayLB must be set.
2511+ // Precisely one of ScalewayS3, ScalewayLB, ScalewayServerlessContainer must be set.
25092512 ScalewayS3 * ScalewayS3BackendConfig `json:"scaleway_s3,omitempty"`
25102513
25112514 // ScalewayLB: scaleway Load Balancer origin linked to the backend stage.
2512- // Precisely one of ScalewayS3, ScalewayLB must be set.
2515+ // Precisely one of ScalewayS3, ScalewayLB, ScalewayServerlessContainer must be set.
25132516 ScalewayLB * ScalewayLBBackendConfig `json:"scaleway_lb,omitempty"`
25142517
25152518 // PipelineID: pipeline ID the Backend stage belongs to.
25162519 PipelineID string `json:"pipeline_id"`
2520+
2521+ // Precisely one of ScalewayS3, ScalewayLB, ScalewayServerlessContainer must be set.
2522+ ScalewayServerlessContainer * ScalewayServerlessContainerBackendConfig `json:"scaleway_serverless_container,omitempty"`
25172523}
25182524
25192525// UpdateCacheStageRequest: update cache stage request.
0 commit comments