diff --git a/internal/clients/content_sources/content-sources.v1.json b/internal/clients/content_sources/content-sources.v1.json index 654a73624..e45e308d1 100644 --- a/internal/clients/content_sources/content-sources.v1.json +++ b/internal/clients/content_sources/content-sources.v1.json @@ -1483,6 +1483,14 @@ "description": "Environment ID used by subscription-manager and candlepin", "type": "string" }, + "snapshots": { + "description": "The list of snapshots in use by the template", + "items": { + "$ref": "#/components/schemas/api.SnapshotResponse" + }, + "readOnly": true, + "type": "array" + }, "updated_at": { "description": "Datetime template was last updated", "type": "string" diff --git a/internal/clients/content_sources/openapi.v1.gen.go b/internal/clients/content_sources/openapi.v1.gen.go index 58590c097..c6c5b8a71 100644 --- a/internal/clients/content_sources/openapi.v1.gen.go +++ b/internal/clients/content_sources/openapi.v1.gen.go @@ -893,6 +893,9 @@ type ApiTemplateResponse struct { // RhsmEnvironmentId Environment ID used by subscription-manager and candlepin RhsmEnvironmentId *string `json:"rhsm_environment_id,omitempty"` + // Snapshots The list of snapshots in use by the template + Snapshots *[]ApiSnapshotResponse `json:"snapshots,omitempty"` + // UpdatedAt Datetime template was last updated UpdatedAt *string `json:"updated_at,omitempty"`