Home
last modified time | relevance | path

Searched refs:rootUrl (Results 226 – 247 of 247) sorted by path

12345678910

/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DTesting.php54 * @param string $rootUrl The root URL used for requests to the service.
56 public function __construct($clientOrConfig = [], $rootUrl = null) argument
59 $this->rootUrl = $rootUrl ?: 'https://testing.googleapis.com/';
H A DTexttospeech.php50 * @param string $rootUrl The root URL used for requests to the service.
52 public function __construct($clientOrConfig = [], $rootUrl = null) argument
55 $this->rootUrl = $rootUrl ?: 'https://texttospeech.googleapis.com/';
H A DToolResults.php58 * @param string $rootUrl The root URL used for requests to the service.
60 public function __construct($clientOrConfig = [], $rootUrl = null) argument
63 $this->rootUrl = $rootUrl ?: 'https://toolresults.googleapis.com/';
H A DTrafficDirectorService.php49 * @param string $rootUrl The root URL used for requests to the service.
51 public function __construct($clientOrConfig = [], $rootUrl = null) argument
54 $this->rootUrl = $rootUrl ?: 'https://trafficdirector.googleapis.com/';
H A DTranscoder.php50 * @param string $rootUrl The root URL used for requests to the service.
52 public function __construct($clientOrConfig = [], $rootUrl = null) argument
55 $this->rootUrl = $rootUrl ?: 'https://transcoder.googleapis.com/';
H A DTranslate.php54 * @param string $rootUrl The root URL used for requests to the service.
56 public function __construct($clientOrConfig = [], $rootUrl = null) argument
59 $this->rootUrl = $rootUrl ?: 'https://translation.googleapis.com/';
H A DVMMigrationService.php57 * @param string $rootUrl The root URL used for requests to the service.
59 public function __construct($clientOrConfig = [], $rootUrl = null) argument
62 $this->rootUrl = $rootUrl ?: 'https://vmmigration.googleapis.com/';
H A DVault.php62 * @param string $rootUrl The root URL used for requests to the service.
64 public function __construct($clientOrConfig = [], $rootUrl = null) argument
67 $this->rootUrl = $rootUrl ?: 'https://vault.googleapis.com/';
H A DVerifiedaccess.php49 * @param string $rootUrl The root URL used for requests to the service.
51 public function __construct($clientOrConfig = [], $rootUrl = null) argument
54 $this->rootUrl = $rootUrl ?: 'https://verifiedaccess.googleapis.com/';
H A DVersionHistory.php49 * @param string $rootUrl The root URL used for requests to the service.
51 public function __construct($clientOrConfig = [], $rootUrl = null) argument
54 $this->rootUrl = $rootUrl ?: 'https://versionhistory.googleapis.com/';
H A DVision.php66 * @param string $rootUrl The root URL used for requests to the service.
68 public function __construct($clientOrConfig = [], $rootUrl = null) argument
71 $this->rootUrl = $rootUrl ?: 'https://vision.googleapis.com/';
H A DWebRisk.php53 * @param string $rootUrl The root URL used for requests to the service.
55 public function __construct($clientOrConfig = [], $rootUrl = null) argument
58 $this->rootUrl = $rootUrl ?: 'https://webrisk.googleapis.com/';
H A DWebfonts.php47 * @param string $rootUrl The root URL used for requests to the service.
49 public function __construct($clientOrConfig = [], $rootUrl = null) argument
52 $this->rootUrl = $rootUrl ?: 'https://webfonts.googleapis.com/';
H A DWebmasters.php53 * @param string $rootUrl The root URL used for requests to the service.
55 public function __construct($clientOrConfig = [], $rootUrl = null) argument
58 $this->rootUrl = $rootUrl ?: 'https://www.googleapis.com/';
H A DWorkflowExecutions.php49 * @param string $rootUrl The root URL used for requests to the service.
51 public function __construct($clientOrConfig = [], $rootUrl = null) argument
54 $this->rootUrl = $rootUrl ?: 'https://workflowexecutions.googleapis.com/';
H A DWorkflows.php51 * @param string $rootUrl The root URL used for requests to the service.
53 public function __construct($clientOrConfig = [], $rootUrl = null) argument
56 $this->rootUrl = $rootUrl ?: 'https://workflows.googleapis.com/';
H A DYouTube.php96 * @param string $rootUrl The root URL used for requests to the service.
98 public function __construct($clientOrConfig = [], $rootUrl = null) argument
101 $this->rootUrl = $rootUrl ?: 'https://youtube.googleapis.com/';
H A DYouTubeAnalytics.php62 * @param string $rootUrl The root URL used for requests to the service.
64 public function __construct($clientOrConfig = [], $rootUrl = null) argument
67 $this->rootUrl = $rootUrl ?: 'https://youtubeanalytics.googleapis.com/';
H A DYouTubeReporting.php55 * @param string $rootUrl The root URL used for requests to the service.
57 public function __construct($clientOrConfig = [], $rootUrl = null) argument
60 $this->rootUrl = $rootUrl ?: 'https://youtubereporting.googleapis.com/';
/plugin/authgooglesheets/vendor/google/apiclient/src/Http/
H A DBatch.php54 private $rootUrl; variable in Google\\Http\\Batch
61 $rootUrl = null, argument
66 $this->rootUrl = rtrim($rootUrl ?: $this->client->getConfig('base_path'), '/');
126 $url = $this->rootUrl . '/' . $this->batchPath;
/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DService.php26 public $rootUrl; variable in Google\\Service
67 $this->rootUrl,
/plugin/authgooglesheets/vendor/google/apiclient/src/Service/
H A DResource.php49 private $rootUrl; variable in Google\\Service\\Resource
68 $this->rootUrl = $service->rootUrl;
272 if ($this->rootUrl) {
273 if ('/' !== substr($this->rootUrl, -1) && '/' !== substr($requestUrl, 0, 1)) {
276 $requestUrl = $this->rootUrl . $requestUrl;

12345678910