mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-03-21 06:39:28 +00:00
Bumps the github-dependencies group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [github.com/IBM/keyprotect-go-client](https://github.com/IBM/keyprotect-go-client) | `0.12.2` | `0.14.1` | | [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.53.14` | `1.54.6` | | [github.com/aws/aws-sdk-go-v2/service/sts](https://github.com/aws/aws-sdk-go-v2) | `1.28.1` | `1.29.1` | | [github.com/hashicorp/vault/api](https://github.com/hashicorp/vault) | `1.12.0` | `1.14.0` | | [github.com/kubernetes-csi/csi-lib-utils](https://github.com/kubernetes-csi/csi-lib-utils) | `0.17.0` | `0.18.1` | | [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.17.1` | `2.19.0` | | [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.18.0` | `1.19.1` | | [github.com/Azure/azure-sdk-for-go/sdk/azidentity](https://github.com/Azure/azure-sdk-for-go) | `1.6.0` | `1.7.0` | Updates `github.com/IBM/keyprotect-go-client` from 0.12.2 to 0.14.1 - [Release notes](https://github.com/IBM/keyprotect-go-client/releases) - [Changelog](https://github.com/IBM/keyprotect-go-client/blob/master/CHANGELOG.md) - [Commits](https://github.com/IBM/keyprotect-go-client/compare/v0.12.2...v0.14.1) Updates `github.com/aws/aws-sdk-go` from 1.53.14 to 1.54.6 - [Release notes](https://github.com/aws/aws-sdk-go/releases) - [Commits](https://github.com/aws/aws-sdk-go/compare/v1.53.14...v1.54.6) Updates `github.com/aws/aws-sdk-go-v2/service/sts` from 1.28.1 to 1.29.1 - [Release notes](https://github.com/aws/aws-sdk-go-v2/releases) - [Commits](https://github.com/aws/aws-sdk-go-v2/compare/service/ecr/v1.28.1...service/s3/v1.29.1) Updates `github.com/hashicorp/vault/api` from 1.12.0 to 1.14.0 - [Release notes](https://github.com/hashicorp/vault/releases) - [Changelog](https://github.com/hashicorp/vault/blob/main/CHANGELOG.md) - [Commits](https://github.com/hashicorp/vault/compare/v1.12.0...v1.14.0) Updates `github.com/kubernetes-csi/csi-lib-utils` from 0.17.0 to 0.18.1 - [Release notes](https://github.com/kubernetes-csi/csi-lib-utils/releases) - [Commits](https://github.com/kubernetes-csi/csi-lib-utils/compare/v0.17.0...v0.18.1) Updates `github.com/onsi/ginkgo/v2` from 2.17.1 to 2.19.0 - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/ginkgo/compare/v2.17.1...v2.19.0) Updates `github.com/onsi/gomega` from 1.32.0 to 1.33.1 - [Release notes](https://github.com/onsi/gomega/releases) - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/gomega/compare/v1.32.0...v1.33.1) Updates `github.com/prometheus/client_golang` from 1.18.0 to 1.19.1 - [Release notes](https://github.com/prometheus/client_golang/releases) - [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md) - [Commits](https://github.com/prometheus/client_golang/compare/v1.18.0...v1.19.1) Updates `github.com/Azure/azure-sdk-for-go/sdk/azidentity` from 1.6.0 to 1.7.0 - [Release notes](https://github.com/Azure/azure-sdk-for-go/releases) - [Changelog](https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/release.md) - [Commits](https://github.com/Azure/azure-sdk-for-go/compare/sdk/azcore/v1.6.0...sdk/azcore/v1.7.0) --- updated-dependencies: - dependency-name: github.com/IBM/keyprotect-go-client dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-dependencies - dependency-name: github.com/aws/aws-sdk-go dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-dependencies - dependency-name: github.com/aws/aws-sdk-go-v2/service/sts dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-dependencies - dependency-name: github.com/hashicorp/vault/api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-dependencies - dependency-name: github.com/kubernetes-csi/csi-lib-utils dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-dependencies - dependency-name: github.com/onsi/ginkgo/v2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-dependencies - dependency-name: github.com/onsi/gomega dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-dependencies - dependency-name: github.com/prometheus/client_golang dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-dependencies - dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azidentity dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
123 lines
3.2 KiB
Go
123 lines
3.2 KiB
Go
package kp
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
)
|
|
|
|
const (
|
|
kmipObjectSubPath = "kmip_objects"
|
|
kmipObjectType = "application/vnd.ibm.kms.kmip_object+json"
|
|
)
|
|
|
|
type KMIPObject struct {
|
|
ID string `json:"id,omitempty"`
|
|
KMIPObjectType int `json:"kmip_object_type,omitempty"`
|
|
ObjectState int `json:"state,omitempty"`
|
|
CreatedByCertID string `json:"created_by_kmip_client_cert_id,omitempty"`
|
|
CreatedBy string `json:"created_by,omitempty"`
|
|
CreatedAt *time.Time `json:"created_at,omitempty"`
|
|
UpdatedByCertID string `json:"updated_by_kmip_client_cert_id,omitempty"`
|
|
UpdatedBy string `json:"updated_by,omitempty"`
|
|
UpdatedAt *time.Time `json:"updated_at,omitempty"`
|
|
DestroyedByCertID string `json:"destroyed_by_kmip_client_cert_id,omitempty"`
|
|
DestroyedBy string `json:"destroyed_by,omitempty"`
|
|
DestroyedAt *time.Time `json:"destroyed_at,omitempty"`
|
|
}
|
|
|
|
type KMIPObjects struct {
|
|
Metadata CollectionMetadata `json:"metadata"`
|
|
Objects []KMIPObject `json:"resources"`
|
|
}
|
|
|
|
type ListKmipObjectsOptions struct {
|
|
Limit *uint32
|
|
Offset *uint32
|
|
TotalCount *bool
|
|
ObjectStateFilter *[]int32
|
|
}
|
|
|
|
func (c *Client) GetKMIPObjects(ctx context.Context, adapter_id string, listOpts *ListKmipObjectsOptions) (*KMIPObjects, error) {
|
|
objects := KMIPObjects{}
|
|
req, err := c.newRequest("GET", fmt.Sprintf("%s/%s/%s", kmipAdapterPath, adapter_id, kmipObjectSubPath), nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if listOpts != nil {
|
|
values := req.URL.Query()
|
|
if listOpts.Limit != nil {
|
|
values.Set("limit", fmt.Sprint(*listOpts.Limit))
|
|
}
|
|
if listOpts.Offset != nil {
|
|
values.Set("offset", fmt.Sprint(*listOpts.Offset))
|
|
}
|
|
if listOpts.TotalCount != nil {
|
|
values.Set("totalCount", fmt.Sprint(*listOpts.TotalCount))
|
|
}
|
|
if listOpts.ObjectStateFilter != nil {
|
|
var stateStrs []string
|
|
for _, i := range *listOpts.ObjectStateFilter {
|
|
stateStrs = append(stateStrs, strconv.FormatInt(int64(i), 10))
|
|
}
|
|
values.Set("state", strings.Join(stateStrs, ","))
|
|
}
|
|
req.URL.RawQuery = values.Encode()
|
|
}
|
|
|
|
_, err = c.do(ctx, req, &objects)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &objects, nil
|
|
}
|
|
|
|
func (c *Client) GetKMIPObject(ctx context.Context, adapter_id, object_id string) (*KMIPObject, error) {
|
|
objects := &KMIPObjects{}
|
|
req, err := c.newRequest("GET", fmt.Sprintf("%s/%s/%s/%s",
|
|
kmipAdapterPath, adapter_id, kmipObjectSubPath, object_id), nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
_, err = c.do(ctx, req, objects)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return unwrapKMIPObject(objects), nil
|
|
}
|
|
|
|
func (c *Client) DeleteKMIPObject(ctx context.Context, adapter_id, object_id string) error {
|
|
req, err := c.newRequest("DELETE", fmt.Sprintf("%s/%s/%s/%s",
|
|
kmipAdapterPath, adapter_id, kmipObjectSubPath, object_id), nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = c.do(ctx, req, nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func wrapKMIPObject(object KMIPObject) KMIPObjects {
|
|
return KMIPObjects{
|
|
Metadata: CollectionMetadata{
|
|
CollectionType: kmipObjectType,
|
|
CollectionTotal: 1,
|
|
},
|
|
Objects: []KMIPObject{object},
|
|
}
|
|
}
|
|
|
|
func unwrapKMIPObject(objects *KMIPObjects) *KMIPObject {
|
|
return &objects.Objects[0]
|
|
}
|