mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
d5849a4801
Bumps the github-dependencies group with 3 updates: [github.com/IBM/keyprotect-go-client](https://github.com/IBM/keyprotect-go-client), [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) and [github.com/aws/aws-sdk-go-v2/service/sts](https://github.com/aws/aws-sdk-go-v2). Updates `github.com/IBM/keyprotect-go-client` from 0.14.1 to 0.14.2 - [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.14.1...v0.14.2) Updates `github.com/aws/aws-sdk-go` from 1.54.6 to 1.54.12 - [Release notes](https://github.com/aws/aws-sdk-go/releases) - [Commits](https://github.com/aws/aws-sdk-go/compare/v1.54.6...v1.54.12) Updates `github.com/aws/aws-sdk-go-v2/service/sts` from 1.29.1 to 1.30.1 - [Release notes](https://github.com/aws/aws-sdk-go-v2/releases) - [Commits](https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.29.1...v1.30.1) --- updated-dependencies: - dependency-name: github.com/IBM/keyprotect-go-client dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-dependencies - dependency-name: github.com/aws/aws-sdk-go dependency-type: direct:production update-type: version-update:semver-patch 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 ... Signed-off-by: dependabot[bot] <support@github.com>
91 lines
2.1 KiB
Go
91 lines
2.1 KiB
Go
package kp
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
"strconv"
|
|
"time"
|
|
)
|
|
|
|
const (
|
|
keyRingPath = "key_rings"
|
|
)
|
|
|
|
type KeyRing struct {
|
|
ID string `json:"id,omitempty"`
|
|
CreationDate *time.Time `json:"creationDate,omitempty"`
|
|
CreatedBy string `json:"createdBy,omitempty"`
|
|
}
|
|
|
|
type KeyRings struct {
|
|
Metadata KeysMetadata `json:"metadata"`
|
|
KeyRings []KeyRing `json:"resources"`
|
|
}
|
|
|
|
// CreateRing method creates a key ring in the instance with the provided name
|
|
// For information please refer to the link below:
|
|
// https://cloud.ibm.com/docs/key-protect?topic=key-protect-managing-key-rings#create-key-ring-api
|
|
func (c *Client) CreateKeyRing(ctx context.Context, id string) error {
|
|
|
|
req, err := c.newRequest("POST", fmt.Sprintf(keyRingPath+"/%s", id), nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = c.do(ctx, req, nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// GetRings method retrieves all the key rings associated with the instance
|
|
// For information please refer to the link below:
|
|
// https://cloud.ibm.com/docs/key-protect?topic=key-protect-managing-key-rings#list-key-ring-api
|
|
func (c *Client) GetKeyRings(ctx context.Context) (*KeyRings, error) {
|
|
rings := KeyRings{}
|
|
req, err := c.newRequest("GET", keyRingPath, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
_, err = c.do(ctx, req, &rings)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &rings, nil
|
|
}
|
|
|
|
type RequestOpt func(*http.Request)
|
|
|
|
func WithForce(force bool) RequestOpt {
|
|
return func(req *http.Request) {
|
|
query := req.URL.Query()
|
|
query.Add("force", strconv.FormatBool(force))
|
|
req.URL.RawQuery = query.Encode()
|
|
}
|
|
}
|
|
|
|
// DeleteRing method deletes the key ring with the provided name in the instance
|
|
// For information please refer to the link below:
|
|
// https://cloud.ibm.com/docs/key-protect?topic=key-protect-managing-key-rings#delete-key-ring-api
|
|
func (c *Client) DeleteKeyRing(ctx context.Context, id string, opts ...RequestOpt) error {
|
|
req, err := c.newRequest("DELETE", fmt.Sprintf(keyRingPath+"/%s", id), nil)
|
|
for _, opt := range opts {
|
|
opt(req)
|
|
}
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = c.do(ctx, req, nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|