Skip to content
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 33 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,30 @@
## Release (2025-XX-XX)
- `sqlserverflex`: [v1.3.0](services/sqlserverflex/CHANGELOG.md#v130)
- Add `required:"true"` tags to model structs
- `postgresflex`: [v1.2.0](services/postgresflex/CHANGELOG.md#v120)
- Add `required:"true"` tags to model structs
- `cdn`: [v1.3.0](services/cdn/CHANGELOG.md#v130)
- **Feature:** Add `DefaultCacheDuration` field to `Config`, `ConfigPatch`, and `CreateDistributionPayload` models
- Add `required:"true"` tags to model structs
- `redis`: [v0.25.0](services/redis/CHANGELOG.md#v0250)
- Add `required:"true"` tags to model structs
- `rabbitmq`: [v0.25.0](services/rabbitmq/CHANGELOG.md#v0250)
- Add `required:"true"` tags to model structs
- `stackitmarketplace`: [v1.6.0](services/stackitmarketplace/CHANGELOG.md#v160)
- **Feature:** Add new `Assets` model for managing service certificate assets
- **Feature:** Add new `LocalizedVersion` model for localized content management
- **Feature:** Add new `NoticePeriod` model with types: `SAME_DAY`, `DAYS`, `MONTHS`
- **Feature:** Add new `ServiceCertificate` model for service certification
- **Feature:** Add `Assets` field to `CatalogProductDetail` model
- **Feature:** Add `OfferType` field to `CatalogProductDetail` model
- **Feature:** Add `NoticePeriod` field to `CatalogProductPricingOption` model
- Add `required:"true"` tags to model structs
- `dns`:
- [v0.17.0](services/dns/CHANGELOG.md#v0170)
- **Feature:** Add new record set types: `CSYNC`, `HINFO`, `SSHFP`, `HTTPS`
- **Feature:** Improve documentation for APEX records in `RecordSet` and `CreateRecordSetPayload` models
- [v0.16.0](services/dns/CHANGELOG.md#v0160)
- Add `required:"true"` tags to model structs
- `ske`:
- [v0.26.0](services/ske/CHANGELOG.md#v0260)
- Add `required:"true"` tags to model structs
Expand Down Expand Up @@ -31,10 +57,12 @@
- Add `required:"true"` tags to model structs
- `logme`: [v0.25.0](services/logme/CHANGELOG.md#v0250)
- Add `required:"true"` tags to model structs
- `iaas`: [v0.25.0](services/iaas/CHANGELOG.md#v0250)
- Add `required:"true"` tags to model structs
- `dns`: [v0.16.0](services/dns/CHANGELOG.md#v0160)
- Add `required:"true"` tags to model structs
- `iaas`:
- [v0.26.0](services/iaas/CHANGELOG.md#v0260)
- **Feature:** Add `Metadata` field to `Server`, `CreateServerPayload`, and `UpdateServerPayload` models
- **Feature:** Increase maximum length validation for `machineType` and `volumePerformanceClass` from 63 to 127 characters
- [v0.25.0](services/iaas/CHANGELOG.md#v0250)
- Add `required:"true"` tags to model structs
- `authorization`: [v0.8.0](services/authorization/CHANGELOG.md#v080)
- Add `required:"true"` tags to model structs
- `serviceaccount`: [v0.9.0](services/serviceaccount/CHANGELOG.md#v090)
Expand Down Expand Up @@ -192,7 +220,7 @@
- **Breaking change:** Introduce interfaces for `APIClient` and the request structs
- [v0.22.0](services/opensearch/CHANGELOG.md#v0220-2025-05-14)
- **Breaking change:** Introduce typed enum constants for status attributes
- `postgresflex`: [v1.1.0](services/postgresflex/CHANGELOG.md#v110-2025-05-15)
- `postgresflex`: [v1.0.4](services/postgresflex/CHANGELOG.md#v104-2025-05-09)
- **Breaking change:** Introduce interfaces for `APIClient` and the request structs
- `rabbitmq`:
- [v0.24.0](services/rabbitmq/CHANGELOG.md#v0240-2025-05-15)
Expand Down
1 change: 1 addition & 0 deletions go.work
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ use (
./scripts
./services/alb
./services/archiving
./services/auditlog
./services/authorization
./services/cdn
./services/certificates
Expand Down
4 changes: 4 additions & 0 deletions services/cdn/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v1.3.0
- **Feature:** Add `DefaultCacheDuration` field to `Config`, `ConfigPatch`, and `CreateDistributionPayload` models
- Add `required:"true"` tags to model structs

## v1.2.1 (2025-06-04)
- **Bugfix:** Adjusted `UnmarshalJSON` function to use enum types and added tests for enums
- **Feature:** Added `Optimizer` attribute
Expand Down
4 changes: 2 additions & 2 deletions services/cdn/api_default.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

72 changes: 68 additions & 4 deletions services/cdn/model_config.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

64 changes: 64 additions & 0 deletions services/cdn/model_config_patch.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading