Home
last modified time | relevance | path

Searched +full:password +(+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/
H A DClientBuilder.php425 * @param string $password
429 public function setBasicAuthentication(string $username, string $password): ClientBuilder argument
441 CURLOPT_USERPWD => $username.':'.$password
526 * @param string $password if the certificate requires a password
528 public function setSSLCert(string $cert, string $password = null): ClientBuilder argument
530 $this->sslCert = [$cert, $password];
539 * @param string $password if the private key requires a password
541 public function setSSLKey(string $key, string $password argument
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dhost-config.asciidoc67 a Basic Auth's password contains special characters such as a pound sign (`#`)
81 // This is effectively equal to: "https://username:password!#$?*abc@foo.com:9200/elastic"
88 'pass' => 'password!#$?*abc'
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/build/Elasticsearch/
H A DClientBuilder.asciidoc298 .`setBasicAuthentication(string $username, string $password)`
376 .`setSSLCert(string $cert, string $password = null)`
389 .`setSSLKey(string $key, string $password = null)`
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/examples/
H A D36b2778f23d0955255f52c075c4d213d.asciidoc11 'password' => 'pass',
/plugin/elasticsearch/vendor/nyholm/dsn/src/Configuration/
H A DUserPasswordTrait.php10 * @var array{ user: string|null, password: string|null, }
12 private $authentication = ['user' => null, 'password' => null];
20 * @param array{ user?: string|null, password?: string|null, } $authentication
26 $this->authentication['password'] = $authentication['password'] ?? null;
48 return $this->authentication['password'] ?? null;
54 public function withPassword(?string $password) argument
57 $new->authentication['password'] = $password;
65 $password
[all...]
H A DPath.php14 * - memcached://user:password@/var/local/run/memcached.socket?weight=25
27 * @param array{ user?: string|null, password?: string|null, } $authentication
H A DDsnFunction.php13 * - dsn(amqp://guest:password@localhost:1234)
14 * - foobar(amqp://guest:password@localhost:1234 amqp://localhost)?delay=10
H A DUrl.php11 * - memcached://user:password@127.0.0.1?weight=50
37 * @param array{ user?: string|null, password?: string|null, } $authentication
/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/nyholm/dsn/
H A DREADME.md37 mysql://user:password@127.0.0.1:3306/my_table
41 Both types can have parameters, user, password. The exact definition we are using
231 { user[:password] | :password }
245 password:
/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
73 $params['body'] = (array) the new password for the user (Required)
/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)
40 'password' => null,
185 $data['password'] = $dsn->getPassword();
H A DConnection.php352 * @return string|null Password
356 return $this->hasParam('password') ? $this->getParam('password') : null;
/plugin/elasticsearch/vendor/ruflin/elastica/src/Transport/
H A DHttp.php101 $password = $connection->getPassword();
102 if (null !== $username && null !== $password) {
104 \curl_setopt($conn, \CURLOPT_USERPWD, "{$username}:{$password}");
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DNodesNamespace.php135 * $params['body'] = (array) An object containing the password for the elasticsearch keystore
H A DSecurityNamespace.php50 * $params['username'] = (string) The username of the user to change the password for
52 * $params['body'] = (array) the new password for the user (Required)
56 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-change-password.html
/plugin/elasticsearch/vendor/nyholm/dsn/src/
H A DDsnParser.php132 throw new SyntaxException($dsn, 'The provided DSN is not valid. Maybe you need to url-encode the user/password?');
137 'password' => empty($matches[2]) ? null : urldecode($matches[2]),
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md864 - Add username and password params to connection