Home
last modified time | relevance | path

Searched refs:WithApiKey (Results 1 – 16 of 16) sorted by relevance

/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-apigateway/include/aws/apigateway/model/
H A DDeleteApiKeyRequest.h66 …inline DeleteApiKeyRequest& WithApiKey(const Aws::String& value) { SetApiKey(value); return *this;} in WithApiKey() function
71 …inline DeleteApiKeyRequest& WithApiKey(Aws::String&& value) { SetApiKey(std::move(value)); return … in WithApiKey() function
76 inline DeleteApiKeyRequest& WithApiKey(const char* value) { SetApiKey(value); return *this;} in WithApiKey() function
H A DGetApiKeyRequest.h73 inline GetApiKeyRequest& WithApiKey(const Aws::String& value) { SetApiKey(value); return *this;} in WithApiKey() function
78 …inline GetApiKeyRequest& WithApiKey(Aws::String&& value) { SetApiKey(std::move(value)); return *th… in WithApiKey() function
83 inline GetApiKeyRequest& WithApiKey(const char* value) { SetApiKey(value); return *this;} in WithApiKey() function
H A DUpdateApiKeyRequest.h69 …inline UpdateApiKeyRequest& WithApiKey(const Aws::String& value) { SetApiKey(value); return *this;} in WithApiKey() function
74 …inline UpdateApiKeyRequest& WithApiKey(Aws::String&& value) { SetApiKey(std::move(value)); return … in WithApiKey() function
79 inline UpdateApiKeyRequest& WithApiKey(const char* value) { SetApiKey(value); return *this;} in WithApiKey() function
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-appflow/include/aws/appflow/model/
H A DSingularConnectorProfileCredentials.h75 …inline SingularConnectorProfileCredentials& WithApiKey(const Aws::String& value) { SetApiKey(value… in WithApiKey() function
81 …inline SingularConnectorProfileCredentials& WithApiKey(Aws::String&& value) { SetApiKey(std::move(… in WithApiKey() function
87 …inline SingularConnectorProfileCredentials& WithApiKey(const char* value) { SetApiKey(value); retu… in WithApiKey() function
H A DDatadogConnectorProfileCredentials.h75 …inline DatadogConnectorProfileCredentials& WithApiKey(const Aws::String& value) { SetApiKey(value)… in WithApiKey() function
81 …inline DatadogConnectorProfileCredentials& WithApiKey(Aws::String&& value) { SetApiKey(std::move(v… in WithApiKey() function
87 …inline DatadogConnectorProfileCredentials& WithApiKey(const char* value) { SetApiKey(value); retur… in WithApiKey() function
H A DAmplitudeConnectorProfileCredentials.h75 …inline AmplitudeConnectorProfileCredentials& WithApiKey(const Aws::String& value) { SetApiKey(valu… in WithApiKey() function
81 …inline AmplitudeConnectorProfileCredentials& WithApiKey(Aws::String&& value) { SetApiKey(std::move… in WithApiKey() function
87 …inline AmplitudeConnectorProfileCredentials& WithApiKey(const char* value) { SetApiKey(value); ret… in WithApiKey() function
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-pinpoint/include/aws/pinpoint/model/
H A DGCMChannelRequest.h77 … inline GCMChannelRequest& WithApiKey(const Aws::String& value) { SetApiKey(value); return *this;} in WithApiKey() function
83 …inline GCMChannelRequest& WithApiKey(Aws::String&& value) { SetApiKey(std::move(value)); return *t… in WithApiKey() function
89 inline GCMChannelRequest& WithApiKey(const char* value) { SetApiKey(value); return *this;} in WithApiKey() function
H A DBaiduChannelRequest.h75 …inline BaiduChannelRequest& WithApiKey(const Aws::String& value) { SetApiKey(value); return *this;} in WithApiKey() function
81 …inline BaiduChannelRequest& WithApiKey(Aws::String&& value) { SetApiKey(std::move(value)); return … in WithApiKey() function
87 inline BaiduChannelRequest& WithApiKey(const char* value) { SetApiKey(value); return *this;} in WithApiKey() function
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-appsync/include/aws/appsync/model/
H A DCreateApiKeyResult.h53 inline CreateApiKeyResult& WithApiKey(const ApiKey& value) { SetApiKey(value); return *this;} in WithApiKey() function
58 …inline CreateApiKeyResult& WithApiKey(ApiKey&& value) { SetApiKey(std::move(value)); return *this;} in WithApiKey() function
H A DUpdateApiKeyResult.h53 inline UpdateApiKeyResult& WithApiKey(const ApiKey& value) { SetApiKey(value); return *this;} in WithApiKey() function
58 …inline UpdateApiKeyResult& WithApiKey(ApiKey&& value) { SetApiKey(std::move(value)); return *this;} in WithApiKey() function
/dports/security/apg/apg-go-0.4.0/vendor/github.com/wneessen/go-hibp/examples/pastes-api/pasted-account/
H A Dmain.go14 hc := hibp.New(hibp.WithApiKey(apiKey))
/dports/security/apg/apg-go-0.4.0/vendor/github.com/wneessen/go-hibp/examples/breaches-api/breached-account/
H A Dmain.go14 hc := hibp.New(hibp.WithApiKey(apiKey))
/dports/security/apg/apg-go-0.4.0/vendor/github.com/wneessen/go-hibp/
H A Dbreach_test.go162 hc := New(WithApiKey(apiKey))
212 hc := New(WithApiKey(apiKey), WithRateLimitSleep())
H A Dpaste_test.go24 hc := New(WithApiKey(apiKey))
H A Dhibp_test.go47 hc := New(WithApiKey(apiKey))
H A Dhibp.go82 func WithApiKey(k string) Option { func