oci-go-sdk
oci-go-sdk copied to clipboard
Go SDK for Oracle Cloud Infrastructure
**Update: This has been fixed in [v65.75.2](https://github.com/oracle/oci-go-sdk/releases/tag/v65.75.2). If you are not able to upgrade to a non-affected version at this time, please use the workaround mentioned below** If you are...
SDK Version: 65 Given an authenticated session, some code like the following: ``` osc, err := objectstorage.NewObjectStorageClientWithConfigurationProvider(provider) if err != nil { return objectstorage.HeadBucketResponse{}, err } req := objectstorage.HeadBucketRequest{ BucketName:...
Go 1.24's go test added a vet check for non-constant format strings: https://go.dev/doc/go1.24#vet This will cause tests to fail when Go 1.24 is used: ``` $ git diff diff --git...
UpdateBootVolumeBackup and CreateBootVolumeBackup doesn't update the created backup with the provided kmskeyID and keeps the original key example: resp, err := c.storage.UpdateBootVolumeBackup(ctx, core.UpdateBootVolumeBackupRequest{ BootVolumeBackupId: common.String("ocid1.bootvolumebackup.oc1.phx...."), UpdateBootVolumeBackupDetails: core.UpdateBootVolumeBackupDetails{ DisplayName: common.String("backup-volume"), KmsKeyId:...
Updated Errorf calls to have format string to be compliant with Go 1.24's vet checks: https://go.dev/doc/go1.24#vet See also #https://github.com/oracle/oci-go-sdk/issues/573 ``` jlamillan-mac:oci-go-sdk JEMILLAN$ go version go version go1.24.0 darwin/arm64 jlamillan-mac:oci-go-sdk JEMILLAN$...
Currently the SDK disallows building on Solaris. This was surfaced in https://github.com/hashicorp/terraform/pull/36913 This is all due to the SDK depending on a very old version of flock which doesn't build...
I was working on a client app that uses OCI sdk, which is using external oci cli binary to create new sessions. Problem is, on the first load it caches...
Hi Team, @ddevadat is working on an integration with OCI GO SDK where he is trying to push key contents via env variable (base64 encoded) but due to the nature...