@@ -30,45 +30,45 @@ func (p *PP) Capabilities() SecretStoreCapabilities {
3030}
3131
3232// New constructs a SecretsManager Provider.
33- func (p * PP ) NewClient (ctx context.Context , store GenericStore , kube client.Client , namespace string ) (SecretsClient , error ) {
33+ func (p * PP ) NewClient (_ context.Context , _ GenericStore , _ client.Client , _ string ) (SecretsClient , error ) {
3434 return p , nil
3535}
3636
3737// PushSecret writes a single secret into a provider.
38- func (p * PP ) PushSecret (ctx context.Context , value []byte , remoteRef PushRemoteRef ) error {
38+ func (p * PP ) PushSecret (_ context.Context , _ []byte , _ PushRemoteRef ) error {
3939 return nil
4040}
4141
4242// DeleteSecret deletes a single secret from a provider.
43- func (p * PP ) DeleteSecret (ctx context.Context , remoteRef PushRemoteRef ) error {
43+ func (p * PP ) DeleteSecret (_ context.Context , _ PushRemoteRef ) error {
4444 return nil
4545}
4646
4747// GetSecret returns a single secret from the provider.
48- func (p * PP ) GetSecret (ctx context.Context , ref ExternalSecretDataRemoteRef ) ([]byte , error ) {
48+ func (p * PP ) GetSecret (_ context.Context , _ ExternalSecretDataRemoteRef ) ([]byte , error ) {
4949 return []byte ("NOOP" ), nil
5050}
5151
5252// GetSecretMap returns multiple k/v pairs from the provider.
53- func (p * PP ) GetSecretMap (ctx context.Context , ref ExternalSecretDataRemoteRef ) (map [string ][]byte , error ) {
53+ func (p * PP ) GetSecretMap (_ context.Context , _ ExternalSecretDataRemoteRef ) (map [string ][]byte , error ) {
5454 return map [string ][]byte {}, nil
5555}
5656
5757// Empty GetAllSecrets.
58- func (p * PP ) GetAllSecrets (ctx context.Context , ref ExternalSecretFind ) (map [string ][]byte , error ) {
58+ func (p * PP ) GetAllSecrets (_ context.Context , _ ExternalSecretFind ) (map [string ][]byte , error ) {
5959 // TO be implemented
6060 return map [string ][]byte {}, nil
6161}
6262
63- func (p * PP ) Close (ctx context.Context ) error {
63+ func (p * PP ) Close (_ context.Context ) error {
6464 return nil
6565}
6666
6767func (p * PP ) Validate () (ValidationResult , error ) {
6868 return ValidationResultReady , nil
6969}
7070
71- func (p * PP ) ValidateStore (store GenericStore ) error {
71+ func (p * PP ) ValidateStore (_ GenericStore ) error {
7272 return nil
7373}
7474
0 commit comments