Home
last modified time | relevance | path

Searched +full:username +(+path:plugin +path:elasticsearch) -(+path:plugin +path:elasticsearch +path:lang) (Results 1 – 19 of 19) sorted by relevance

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Security/
H A DGetUser.php30 protected $username; variable in Elasticsearch\\Endpoints\\Security\\GetUser
34 $username = $this->username ?? null;
36 if (isset($username)) {
37 return "/_security/user/$username";
54 public function setUsername($username): GetUser argument
56 if (isset($username) !== true) {
59 if (is_array($username) === true) {
60 $username = implode(",", $username);
[all...]
H A DDisableUser.php31 protected $username; variable in Elasticsearch\\Endpoints\\Security\\DisableUser
35 $username = $this->username ?? null;
37 if (isset($username)) {
38 return "/_security/user/$username/_disable";
55 public function setUsername($username): DisableUser argument
57 if (isset($username) !== true) {
60 $this->username = $username;
H A DDeleteUser.php31 protected $username; variable in Elasticsearch\\Endpoints\\Security\\DeleteUser
35 $username = $this->username ?? null;
37 if (isset($username)) {
38 return "/_security/user/$username";
55 public function setUsername($username): DeleteUser argument
57 if (isset($username) !== true) {
60 $this->username = $username;
H A DEnableUser.php31 protected $username; variable in Elasticsearch\\Endpoints\\Security\\EnableUser
35 $username = $this->username ?? null;
37 if (isset($username)) {
38 return "/_security/user/$username/_enable";
55 public function setUsername($username): EnableUser argument
57 if (isset($username) !== true) {
60 $this->username = $username;
H A DPutUser.php31 protected $username; variable in Elasticsearch\\Endpoints\\Security\\PutUser
35 $username = $this->username ?? null;
37 if (isset($username)) {
38 return "/_security/user/$username";
65 public function setUsername($username): PutUser argument
67 if (isset($username) !== true) {
70 $this->username = $username;
H A DChangePassword.php30 protected $username; variable in Elasticsearch\\Endpoints\\Security\\ChangePassword
34 $username = $this->username ?? null;
36 if (isset($username)) {
37 return "/_security/user/$username/_password";
64 public function setUsername($username): ChangePassword argument
66 if (isset($username) !== true) {
69 $this->username = $username;
H A DGetApiKey.php42 'username',
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DSecurityNamespace.php50 * $params['username'] = (string) The username of the user to change the password for
60 $username = $this->extractArgument($params, 'username');
66 $endpoint->setUsername($username);
331 * $params['username'] = (string) username
340 $username = $this->extractArgument($params, 'username');
345 $endpoint->setUsername($username);
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DSecurityNamespace.asciidoc71 $params['username'] = (string) The username of the user to change the password for
196 $params['username'] = (string) username
210 $params['username'] = (string) The username of the user to disable
224 $params['username'] = (string) The username of the user to enable
240 $params['username'] = (string) user name of the user who created this API key to be retrieved
320 $params['username']
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dhost-config.asciidoc81 // This is effectively equal to: "https://username:password!#$?*abc@foo.com:9200/elastic"
87 'user' => 'username',
H A Dconnecting.asciidoc30 ->setBasicAuthentication('<username>', '<password>')
34 Where <cloud-id> is reported in the Deployment UI, and <username>, <password>
36 <username> and <password> since they will not be available via UI.
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D36b2778f23d0955255f52c075c4d213d.asciidoc10 'username' => 'user',
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnectionInterface.php45 * Get the username:password string for this connection, null if not set
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/
H A DClientBuilder.php424 * @param string $username
429 public function setBasicAuthentication(string $username, string $password): ClientBuilder argument
441 CURLOPT_USERPWD => $username.':'.$password
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DClientConfiguration.php35 'connections' => [], // host, port, path, transport, compression, persistent, timeout, username, password, auth_type, config -> (curl, headers, url)
39 'username' => null,
181 $data['username'] = $dsn->getUser();
H A DConnection.php348 return $this->hasParam('username') ? $this->getParam('username') : null;
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DHttp.php100 $username = $connection->getUsername();
102 if (null !== $username && null !== $password) {
104 \curl_setopt($conn, \CURLOPT_USERPWD, "{$username}:{$password}");
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClientBuilder.asciidoc298 .`setBasicAuthentication(string $username, string $password)`
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md864 - Add username and password params to connection