Home
last modified time | relevance | path

Searched refs:endpoint (Results 26 – 50 of 132) sorted by relevance

123456

/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DIndex.php124 $endpoint = \class_exists(GetMapping::class) ? new GetMapping() : new MappingGet();
126 $response = $this->requestEndpoint($endpoint);
195 $endpoint = new UpdateByQuery();
202 $endpoint->setBody($body);
203 $endpoint->setParams($options);
205 return $this->requestEndpoint($endpoint);
217 $endpoint = new IndexEndpoint();
220 $endpoint->setId($doc->getId());
238 $endpoint->setBody($doc->getData());
239 $endpoint
664 requestEndpoint(AbstractEndpoint $endpoint) global() argument
[all...]
H A DPipeline.php70 $endpoint = \class_exists(PutPipeline::class) ? new PutPipeline() : new Put();
71 $endpoint->setId($this->id);
72 $endpoint->setBody($this->toArray());
74 return $this->requestEndpoint($endpoint);
85 $endpoint = \class_exists(GetPipeline::class) ? new GetPipeline() : new Get();
86 $endpoint->setId($id);
88 return $this->requestEndpoint($endpoint);
99 $endpoint = \class_exists(DeletePipeline::class) ? new DeletePipeline() : new Delete();
100 $endpoint->setId($id);
102 return $this->requestEndpoint($endpoint);
175 requestEndpoint(AbstractEndpoint $endpoint) global() argument
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DLogstashNamespace.php44 $endpoint = $endpointBuilder('Logstash\DeletePipeline');
45 $endpoint->setParams($params);
46 $endpoint->setId($id);
48 return $this->performRequest($endpoint);
64 $endpoint = $endpointBuilder('Logstash\GetPipeline');
65 $endpoint->setParams($params);
66 $endpoint->setId($id);
68 return $this->performRequest($endpoint);
86 $endpoint = $endpointBuilder('Logstash\PutPipeline');
87 $endpoint
[all...]
H A DShutdownNamespace.php47 $endpoint = $endpointBuilder('Shutdown\DeleteNode');
48 $endpoint->setParams($params);
49 $endpoint->setNodeId($node_id);
51 return $this->performRequest($endpoint);
70 $endpoint = $endpointBuilder('Shutdown\GetNode');
71 $endpoint->setParams($params);
72 $endpoint->setNodeId($node_id);
74 return $this->performRequest($endpoint);
95 $endpoint = $endpointBuilder('Shutdown\PutNode');
96 $endpoint
[all...]
H A DDanglingIndicesNamespace.php47 $endpoint = $endpointBuilder('DanglingIndices\DeleteDanglingIndex');
48 $endpoint->setParams($params);
49 $endpoint->setIndexUuid($index_uuid);
51 return $this->performRequest($endpoint);
70 $endpoint = $endpointBuilder('DanglingIndices\ImportDanglingIndex');
71 $endpoint->setParams($params);
72 $endpoint->setIndexUuid($index_uuid);
74 return $this->performRequest($endpoint);
88 $endpoint = $endpointBuilder('DanglingIndices\ListDanglingIndices');
89 $endpoint
[all...]
H A DTasksNamespace.php51 $endpoint = $endpointBuilder('Tasks\Cancel');
52 $endpoint->setParams($params);
53 $endpoint->setTaskId($task_id);
55 return $this->performRequest($endpoint);
76 $endpoint = $endpointBuilder('Tasks\Get');
77 $endpoint->setParams($params);
78 $endpoint->setTaskId($task_id);
80 return $this->performRequest($endpoint);
104 $endpoint = $endpointBuilder('Tasks\ListTasks');
105 $endpoint
[all...]
H A DAbstractNamespace.php56 protected function performRequest(AbstractEndpoint $endpoint) argument
59 $endpoint->getMethod(),
60 $endpoint->getURI(),
61 $endpoint->getParams(),
62 $endpoint->getBody(),
63 $endpoint->getOptions()
66 return $this->transport->resultOrFuture($response, $endpoint->getOptions());
H A DBooleanRequestWrapper.php35 public static function performRequest(AbstractEndpoint $endpoint, Transport $transport) argument
39 $endpoint->getMethod(),
40 $endpoint->getURI(),
41 $endpoint->getParams(),
42 $endpoint->getBody(),
43 $endpoint->getOptions()
46 $response = $transport->resultOrFuture($response, $endpoint->getOptions());
H A DFeaturesNamespace.php43 $endpoint = $endpointBuilder('Features\GetFeatures');
44 $endpoint->setParams($params);
46 return $this->performRequest($endpoint);
63 $endpoint = $endpointBuilder('Features\ResetFeatures');
64 $endpoint->setParams($params);
66 return $this->performRequest($endpoint);
H A DXpackNamespace.php44 $endpoint = $endpointBuilder('Xpack\Info');
45 $endpoint->setParams($params);
47 return $this->performRequest($endpoint);
62 $endpoint = $endpointBuilder('Xpack\Usage');
63 $endpoint->setParams($params);
65 return $this->performRequest($endpoint);
H A DGraphNamespace.php50 $endpoint = $endpointBuilder('Graph\Explore');
51 $endpoint->setParams($params);
52 $endpoint->setIndex($index);
53 $endpoint->setType($type);
54 $endpoint->setBody($body);
56 return $this->performRequest($endpoint);
H A DMonitoringNamespace.php52 $endpoint = $endpointBuilder('Monitoring\Bulk');
53 $endpoint->setParams($params);
54 $endpoint->setType($type);
55 $endpoint->setBody($body);
57 return $this->performRequest($endpoint);
H A DFleetNamespace.php50 $endpoint = $endpointBuilder('Fleet\GlobalCheckpoints');
51 $endpoint->setParams($params);
52 $endpoint->setIndex($index);
54 return $this->performRequest($endpoint);
/plugin/authfacebook/lib/FileUpload/
H A DFacebookResumableUploader.php78 * @param string $endpoint
85 public function start($endpoint, FacebookFile $file) argument
91 $response = $this->sendUploadRequest($endpoint, $params);
99 * @param string $endpoint
107 public function transfer($endpoint, FacebookTransferChunk $chunk, $allowToThrow = false) argument
117 $response = $this->sendUploadRequest($endpoint, $params);
134 * @param string $endpoint
142 public function finish($endpoint, $uploadSessionId, $metadata = []) argument
148 $response = $this->sendUploadRequest($endpoint, $params);
156 * @param string $endpoint The endpoint to POST to.
[all …]
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DLogglyHandler.php65 * @param string $endpoint
69 protected function getCurlHandler(string $endpoint) argument
71 if (!array_key_exists($endpoint, $this->curlHandlers)) {
72 $this->curlHandlers[$endpoint] = $this->loadCurlHandle($endpoint);
75 return $this->curlHandlers[$endpoint];
81 * @param string $endpoint
85 private function loadCurlHandle(string $endpoint) argument
87 $url = sprintf("https://%s/%s/%s/", static::HOST, $endpoint, $this->token);
140 protected function send(string $data, string $endpoint): void argument
142 $ch = $this->getCurlHandler($endpoint);
/plugin/authfacebook/lib/
H A DFacebook.php324 * @param string $endpoint
337 $endpoint,
348 * @param string $endpoint
362 $endpoint,
373 * @param string $endpoint
387 $endpoint,
453 * @param string $endpoint
522 * @param string $endpoint
541 $endpoint,
596 $endpoint = '/'.$target.'/videos';
[all …]
H A DFacebookRequest.php59 protected $endpoint; variable in Facebook\\FacebookRequest
92 * @param string|null $endpoint
97 …onstruct(FacebookApp $app = null, $accessToken = null, $method = null, $endpoint = null, array $pa… argument
102 $this->setEndpoint($endpoint);
258 public function setEndpoint($endpoint) argument
261 $params = FacebookUrlManipulator::getParamsAsArray($endpoint);
268 $this->endpoint = FacebookUrlManipulator::removeParamsFromUrl($endpoint, $filterParams);
281 return $this->endpoint;
510 $endpoint = FacebookUrlManipulator::forceSlashPrefix($this->getEndpoint());
512 $url = $graphVersion . $endpoint;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/
H A DServiceAttachmentConnectedEndpoint.php25 public $endpoint; variable in Google\\Service\\Compute\\ServiceAttachmentConnectedEndpoint
38 public function setEndpoint($endpoint) argument
40 $this->endpoint = $endpoint;
47 return $this->endpoint;
H A DNotificationEndpointGrpcSettings.php29 public $endpoint; variable in Google\\Service\\Compute\\NotificationEndpointGrpcSettings
58 public function setEndpoint($endpoint) argument
60 $this->endpoint = $endpoint;
67 return $this->endpoint;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
H A DGoogleCloudApigeeV1TraceConfig.php25 public $endpoint; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1TraceConfig
36 public function setEndpoint($endpoint) argument
38 $this->endpoint = $endpoint;
45 return $this->endpoint;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudDataplex/
H A DGoogleCloudDataplexV1LakeMetastoreStatus.php25 public $endpoint; variable in Google\\Service\\CloudDataplex\\GoogleCloudDataplexV1LakeMetastoreStatus
42 public function setEndpoint($endpoint) argument
44 $this->endpoint = $endpoint;
51 return $this->endpoint;
/plugin/evesso/phpoauthlib/src/OAuth/Common/Http/Client/
H A DStreamClient.php17 * @param UriInterface $endpoint
28 UriInterface $endpoint, argument
46 $host = 'Host: '.$endpoint->getHost();
48 if ($endpoint->hasExplicitPortSpecified()) {
49 $host .= ':'.$endpoint->getPort();
63 $response = file_get_contents($endpoint->getAbsoluteUri(), false, $context);
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Http/Client/
H A DStreamClient.php14 * Any implementing HTTP providers should send a request to the provided endpoint with the parameters.
17 * @param UriInterface $endpoint
28 UriInterface $endpoint, argument
46 $host = 'Host: '.$endpoint->getHost();
48 if ($endpoint->hasExplicitPortSpecified()) {
49 $host .= ':'.$endpoint->getPort();
63 $response = file_get_contents($endpoint->getAbsoluteUri(), false, $context);
/plugin/mantis/lib/
H A Dclass.soapclient.php36 var $endpoint; variable in nusoap_client
99 $this->endpoint = $endpoint;
112 if (is_object($endpoint) && (get_class($endpoint) == 'wsdl')) {
113 $this->wsdl = $endpoint;
114 $this->endpoint = $this->wsdl->wsdl;
115 $this->wsdlFile = $this->endpoint;
119 $this->wsdlFile = $this->endpoint;
409 case ereg('^http',$this->endpoint):
547 function setEndpoint($endpoint) { argument
549 $this->forceEndpoint = $endpoint;
[all …]
/plugin/issuelinks/services/
H A DGitHub.service.php123 protected function makeGitHubGETRequest($endpoint, $max = null) argument
170 * @param string $endpoint
192 $url = $this->githubUrl . $endpoint;
225 $endpoint = "/orgs/$organisation/repos";
227 $repos = $this->makeGitHubGETRequest($endpoint);
239 $endpoint = "/repos/$repoData[full_name]/hooks";
438 $endpoint = '/user/orgs';
461 $endpoint = '/repos/' . $repo . '/issues/' . $issueNumber;
462 $result = $this->makeGitHubGETRequest($endpoint);
467 $result = $this->makeGitHubGETRequest($endpoint);
[all …]

123456