Home
last modified time | relevance | path

Searched refs:endpoint (Results 51 – 75 of 132) sorted by relevance

123456

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DMigrationNamespace.php44 $endpoint = $endpointBuilder('Migration\Deprecations');
45 $endpoint->setParams($params);
46 $endpoint->setIndex($index);
48 return $this->performRequest($endpoint);
H A DTextStructureNamespace.php58 $endpoint = $endpointBuilder('TextStructure\FindStructure');
59 $endpoint->setParams($params);
60 $endpoint->setBody($body);
62 return $this->performRequest($endpoint);
H A DSslNamespace.php42 $endpoint = $endpointBuilder('Ssl\Certificates');
43 $endpoint->setParams($params);
45 return $this->performRequest($endpoint);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AIPlatformNotebooks/
H A DOperationMetadata.php37 public $endpoint; variable in Google\\Service\\AIPlatformNotebooks\\OperationMetadata
100 public function setEndpoint($endpoint) argument
102 $this->endpoint = $endpoint;
109 return $this->endpoint;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
H A DGoogleCloudApigeeV1RuntimeTraceConfig.php26 public $endpoint; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1RuntimeTraceConfig
51 public function setEndpoint($endpoint) argument
53 $this->endpoint = $endpoint;
60 return $this->endpoint;
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DClient.php283 $endpoint = new Update();
284 $endpoint->setId($id);
285 $endpoint->setIndex($index);
320 $endpoint->setBody($requestData);
321 $endpoint->setParams($options);
323 $response = $this->requestEndpoint($endpoint);
578 public function requestEndpoint(AbstractEndpoint $endpoint): Response
581 \ltrim($endpoint->getURI(), '/'),
582 $endpoint->getMethod(),
583 $endpoint
546 requestEndpoint(AbstractEndpoint $endpoint) global() argument
[all...]
H A DTask.php96 $endpoint = (new Tasks\Get())
101 $this->_response = $this->_client->requestEndpoint($endpoint);
121 $endpoint = (new Tasks\Cancel())
125 return $this->_client->requestEndpoint($endpoint);
H A DMapping.php168 $endpoint = \class_exists(PutMapping::class) ? new PutMapping() : new Put();
169 $endpoint->setBody($this->toArray());
170 $endpoint->setParams($query);
172 return $index->requestEndpoint($endpoint);
H A DStatus.php105 $endpoint = \class_exists(GetAlias::class) ? new GetAlias() : new Get();
106 $endpoint->setName($alias);
111 $response = $this->_client->requestEndpoint($endpoint);
/plugin/issuelinks/services/
H A DGitLab.service.php108 protected function makeSingleGitLabGetRequest($endpoint) argument
110 return $this->makeGitLabRequest($endpoint, [], 'GET');
128 $url = $this->gitlabUrl . '/api/v4' . strtolower($endpoint);
215 $repoHooks = $this->makeSingleGitLabGetRequest($endpoint);
264 $endpoint = "/projects/$encProject/hooks/$hookid";
266 $data = $this->makeGitLabRequest($endpoint, [], 'DELETE');
314 $endpoint = '/projects/' . $repoUrlEnc . '/' . $notable . '/' . $issue->getKey();
315 $info = $this->makeSingleGitLabGetRequest($endpoint);
325 $endpoint = '/projects/' . $repoUrlEnc . '/labels';
326 $projectLabelData = $this->makeSingleGitLabGetRequest($endpoint);
[all …]
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth1/Service/
H A DTwitter.php61 public function setAuthorizationEndpoint($endpoint) argument
63 if ($endpoint != self::ENDPOINT_AUTHENTICATE && $endpoint != self::ENDPOINT_AUTHORIZE) {
65 sprintf("'%s' is not a correct Twitter authorization endpoint.", $endpoint)
68 $this->authorizationEndpoint = $endpoint;
/plugin/openid/Auth/OpenID/
H A DTrustRoot.php338 * @param Auth_OpenID_ServiceEndpoint $endpoint An XRDS BasicServiceEndpoint, as returned by
344 function filter_extractReturnURL($endpoint) argument
346 if ($endpoint->matchTypes([Auth_OpenID_RP_RETURN_TO_URL_TYPE])) {
347 return $endpoint;
357 foreach ($endpoint_list as $endpoint) {
358 if (filter_extractReturnURL($endpoint)) {
359 $result[] = $endpoint;
/plugin/evesso/classes/
H A DoAuthHTTPClient.php20 * @param UriInterface $endpoint
30 UriInterface $endpoint, argument
38 $ok = $http->sendRequest($endpoint->getAbsoluteUri(), $requestBody, $method);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/GKEHub/
H A DMembership.php124 public function setEndpoint(MembershipEndpoint $endpoint) argument
126 $this->endpoint = $endpoint;
133 return $this->endpoint;
/plugin/evesso/phpoauthlib/src/OAuth/Common/Http/Client/
H A DCurlClient.php54 * @param UriInterface $endpoint
65 UriInterface $endpoint, argument
83 $extraHeaders['Host'] = 'Host: '.$endpoint->getHost();
88 curl_setopt($ch, CURLOPT_URL, $endpoint->getAbsoluteUri());
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Http/Client/
H A DCurlClient.php51 * Any implementing HTTP providers should send a request to the provided endpoint with the parameters.
54 * @param UriInterface $endpoint
65 UriInterface $endpoint, argument
83 $extraHeaders['Host'] = 'Host: '.$endpoint->getHost();
88 curl_setopt($ch, CURLOPT_URL, $endpoint->getAbsoluteUri());
/plugin/fedauth/Auth/OpenID/
H A DTrustRoot.php344 function filter_extractReturnURL($endpoint) argument
346 if ($endpoint->matchTypes(array(Auth_OpenID_RP_RETURN_TO_URL_TYPE))) {
347 return $endpoint;
357 foreach ($endpoint_list as $endpoint) {
358 if (filter_extractReturnURL($endpoint)) {
359 $result[] = $endpoint;
/plugin/elasticsearch/vendor/ruflin/elastica/src/Node/
H A DInfo.php221 $endpoint = \class_exists(NodesInfo::class) ? new NodesInfo() : new \Elasticsearch\Endpoints\Cluster\Nodes\Info();
222 $endpoint->setNodeId($this->getNode()->getId());
225 $endpoint->setMetric($params);
228 $this->_response = $this->getNode()->getClient()->requestEndpoint($endpoint);
H A DStats.php118 $endpoint = \class_exists(NodesStats::class) ? new NodesStats() : new \Elasticsearch\Endpoints\Cluster\Nodes\Stats();
119 $endpoint->setNodeId($this->getNode()->getName());
121 $this->_response = $this->getNode()->getClient()->requestEndpoint($endpoint);
/plugin/oauthkeycloak/
H A DKeycloak.php39 public function getEndpoint(string $endpoint) argument
47 if (!isset($this->discovery[$endpoint])) return '';
48 return $this->discovery[$endpoint];
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DLogmaticHandler.php63 $endpoint = $useSSL ? 'ssl://api.logmatic.io:10515' : 'api.logmatic.io:10514';
64 $endpoint .= '/v1/';
67 $endpoint,
/plugin/vimeo/
H A Dsyntax.php121 $endpoint = '/me/albums/' . $albumID . '/videos?sort=manual&per_page=100&fields=' . $fields;
123 $respData = $this->sendVimeoRequest($accessToken, $endpoint, $errors);
146 * @param string $endpoint The endpoint to which to connect, must begin with a /
153 protected function sendVimeoRequest($accessToken, $endpoint, &$errors) argument
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClientBuilder.php53 private $endpoint; variable in Elasticsearch\\ClientBuilder
168 return $this->endpoint;
307 * Set the endpoint
309 * @param callable $endpoint
311 public function setEndpoint(callable $endpoint): ClientBuilder argument
313 $this->endpoint = $endpoint;
669 if (is_null($this->endpoint)) {
672 $this->endpoint = function ($class) use ($serializer) {
694 return $this->instantiate($this->transport, $this->endpoint,
697 instantiate(Transport $transport, callable $endpoint, array $registeredNamespaces) global() argument
[all...]
/plugin/authloginapi/
H A Daction.php11 protected $endpoint; variable in action_plugin_authloginapi
29 $this->endpoint = $this->getConf('endpoint');
79 $form->params['action'] = $this->endpoint;
/plugin/elasticsearch/vendor/ruflin/elastica/src/Cluster/
H A DHealth.php188 $endpoint = new \Elasticsearch\Endpoints\Cluster\Health();
189 $endpoint->setParams(['level' => 'shards']);
191 $response = $this->_client->requestEndpoint($endpoint);

123456