Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewCredentialProvider ¶
func NewMinioClient ¶
NewMinioClient returns a minio.Client which is compatible for tencent OSS
Types ¶
type Credential ¶
type Credential interface { common.CredentialIface }
Credential is defined to mock tencent credential.Credentials
type CredentialProvider ¶
type CredentialProvider struct {
// contains filtered or unexported fields
}
CredentialProvider implements "github.com/minio/minio-go/v7/pkg/credentials".Provider also implements transport
func (CredentialProvider) IsExpired ¶
func (c CredentialProvider) IsExpired() bool
IsExpired returns if the credentials are no longer valid, and need to be retrieved. according to the caller minioCred.Credentials.IsExpired(), it already has a lock, so we don't need to worry about concurrency
func (*CredentialProvider) Retrieve ¶
func (c *CredentialProvider) Retrieve() (minioCred.Value, error)
Retrieve returns nil if it successfully retrieved the value. Error is returned if the value were not obtainable, or empty. according to the caller minioCred.Credentials.Get(), it already has a lock, so we don't need to worry about concurrency