All URIs are relative to https://ethosce.looker.com:19999/api/3.1
Method | HTTP request | Description |
---|---|---|
allLegacyFeatures | GET /legacy_features | Get All Legacy Features |
allTimezones | GET /timezones | Get All Timezones |
backupConfiguration | GET /backup_configuration | Get Backup Configuration |
legacyFeature | GET /legacy_features/{legacy_feature_id} | Get Legacy Feature |
updateBackupConfiguration | PATCH /backup_configuration | Update Backup Configuration |
updateLegacyFeature | PATCH /legacy_features/{legacy_feature_id} | Update Legacy Feature |
updateWhitelabelConfiguration | PUT /whitelabel_configuration | Update Whitelabel configuration |
versions | GET /versions | Get ApiVersion |
whitelabelConfiguration | GET /whitelabel_configuration | Get Whitelabel configuration |
\Looker\Model\LegacyFeature[] allLegacyFeatures()
Get All Legacy Features
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Looker\Api\ConfigApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
try {
$result = $apiInstance->allLegacyFeatures();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ConfigApi->allLegacyFeatures: ', $e->getMessage(), PHP_EOL;
}
?>
This endpoint does not need any parameter.
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Looker\Model\Timezone[] allTimezones()
Get All Timezones
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Looker\Api\ConfigApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
try {
$result = $apiInstance->allTimezones();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ConfigApi->allTimezones: ', $e->getMessage(), PHP_EOL;
}
?>
This endpoint does not need any parameter.
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Looker\Model\BackupConfiguration backupConfiguration()
Get Backup Configuration
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Looker\Api\ConfigApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
try {
$result = $apiInstance->backupConfiguration();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ConfigApi->backupConfiguration: ', $e->getMessage(), PHP_EOL;
}
?>
This endpoint does not need any parameter.
\Looker\Model\BackupConfiguration
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Looker\Model\LegacyFeature legacyFeature($legacy_feature_id)
Get Legacy Feature
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Looker\Api\ConfigApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$legacy_feature_id = 789; // int | id of legacy feature
try {
$result = $apiInstance->legacyFeature($legacy_feature_id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ConfigApi->legacyFeature: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
legacy_feature_id | int | id of legacy feature |
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Looker\Model\BackupConfiguration updateBackupConfiguration($body)
Update Backup Configuration
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Looker\Api\ConfigApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$body = new \Looker\Model\BackupConfiguration(); // \Looker\Model\BackupConfiguration | Options for Backup Configuration
try {
$result = $apiInstance->updateBackupConfiguration($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ConfigApi->updateBackupConfiguration: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Looker\Model\BackupConfiguration | Options for Backup Configuration |
\Looker\Model\BackupConfiguration
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Looker\Model\LegacyFeature updateLegacyFeature($legacy_feature_id, $body)
Update Legacy Feature
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Looker\Api\ConfigApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$legacy_feature_id = 789; // int | id of legacy feature
$body = new \Looker\Model\LegacyFeature(); // \Looker\Model\LegacyFeature | Legacy Feature
try {
$result = $apiInstance->updateLegacyFeature($legacy_feature_id, $body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ConfigApi->updateLegacyFeature: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
legacy_feature_id | int | id of legacy feature | |
body | \Looker\Model\LegacyFeature | Legacy Feature |
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Looker\Model\WhitelabelConfiguration updateWhitelabelConfiguration($body)
Update Whitelabel configuration
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Looker\Api\ConfigApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$body = new \Looker\Model\WhitelabelConfiguration(); // \Looker\Model\WhitelabelConfiguration | Whitelabel configuration
try {
$result = $apiInstance->updateWhitelabelConfiguration($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ConfigApi->updateWhitelabelConfiguration: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Looker\Model\WhitelabelConfiguration | Whitelabel configuration |
\Looker\Model\WhitelabelConfiguration
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Looker\Model\ApiVersion versions($fields)
Get ApiVersion
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Looker\Api\ConfigApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$fields = "fields_example"; // string | Requested fields.
try {
$result = $apiInstance->versions($fields);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ConfigApi->versions: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
fields | string | Requested fields. | [optional] |
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Looker\Model\WhitelabelConfiguration whitelabelConfiguration($fields)
Get Whitelabel configuration
This feature is enabled only by special license. ### Gets the whitelabel configuration, which includes hiding documentation links, custom favicon uploading, etc.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Looker\Api\ConfigApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$fields = "fields_example"; // string | Requested fields.
try {
$result = $apiInstance->whitelabelConfiguration($fields);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ConfigApi->whitelabelConfiguration: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
fields | string | Requested fields. | [optional] |
\Looker\Model\WhitelabelConfiguration
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]