fix(deps): update stackit sdk modules (#988)

* fix(deps): update stackit sdk modules

* chore(objectstorage): Attribute expires is now a NullableString

Signed-off-by: Alexander Dahmen <alexander.dahmen@inovex.de>

---------

Signed-off-by: Alexander Dahmen <alexander.dahmen@inovex.de>
Co-authored-by: Renovate Bot <renovate@whitesourcesoftware.com>
Co-authored-by: Alexander Dahmen <alexander.dahmen@inovex.de>
This commit is contained in:
stackit-pipeline 2025-09-10 09:54:38 +02:00 committed by GitHub
parent 8f8124e32d
commit ba6ee8bd23
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 10 additions and 10 deletions

View file

@ -496,7 +496,7 @@ func mapFields(credentialResp *objectstorage.CreateAccessKeyResponse, model *Mod
} else {
// Harmonize the timestamp format
// Eg. "2027-01-02T03:04:05.000Z" = "2027-01-02T03:04:05Z"
expirationTimestamp, err := time.Parse(time.RFC3339, *credentialResp.Expires)
expirationTimestamp, err := time.Parse(time.RFC3339, *credentialResp.Expires.Get())
if err != nil {
return fmt.Errorf("unable to parse payload expiration timestamp '%v': %w", *credentialResp.Expires, err)
}