All URIs are relative to https://looker.buffer.com:19999/api/3.0
Method | HTTP request | Description |
---|---|---|
all_legacy_features | GET /legacy_features | get all legacy features |
all_timezones | GET /timezones | get all timezones |
backup_configuration | GET /backup_configuration | get backup configuration |
legacy_feature | GET /legacy_features/{legacy_feature_id} | get legacy feature |
update_backup_configuration | PATCH /backup_configuration | update backup configuration |
update_legacy_feature | PATCH /legacy_features/{legacy_feature_id} | update legacy feature |
list[LegacyFeature] all_legacy_features()
get all legacy features
import time
import lookerpy
from lookerpy.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = lookerpy.ConfigApi()
try:
# get all legacy features
api_response = api_instance.all_legacy_features()
pprint(api_response)
except ApiException as e:
print "Exception when calling ConfigApi->all_legacy_features: %s\n" % e
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]
list[Timezone] all_timezones()
get all timezones
import time
import lookerpy
from lookerpy.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = lookerpy.ConfigApi()
try:
# get all timezones
api_response = api_instance.all_timezones()
pprint(api_response)
except ApiException as e:
print "Exception when calling ConfigApi->all_timezones: %s\n" % e
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]
BackupConfiguration backup_configuration()
get backup configuration
import time
import lookerpy
from lookerpy.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = lookerpy.ConfigApi()
try:
# get backup configuration
api_response = api_instance.backup_configuration()
pprint(api_response)
except ApiException as e:
print "Exception when calling ConfigApi->backup_configuration: %s\n" % e
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]
LegacyFeature legacy_feature(legacy_feature_id)
get legacy feature
import time
import lookerpy
from lookerpy.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = lookerpy.ConfigApi()
legacy_feature_id = 789 # int | id of legacy feature
try:
# get legacy feature
api_response = api_instance.legacy_feature(legacy_feature_id)
pprint(api_response)
except ApiException as e:
print "Exception when calling ConfigApi->legacy_feature: %s\n" % e
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]
BackupConfiguration update_backup_configuration(body)
update backup configuration
import time
import lookerpy
from lookerpy.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = lookerpy.ConfigApi()
body = lookerpy.BackupConfiguration() # BackupConfiguration | Options for Backup Configuration
try:
# update backup configuration
api_response = api_instance.update_backup_configuration(body)
pprint(api_response)
except ApiException as e:
print "Exception when calling ConfigApi->update_backup_configuration: %s\n" % e
Name | Type | Description | Notes |
---|---|---|---|
body | BackupConfiguration | Options for Backup Configuration |
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
LegacyFeature update_legacy_feature(legacy_feature_id, body)
update legacy feature
import time
import lookerpy
from lookerpy.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = lookerpy.ConfigApi()
legacy_feature_id = 789 # int | id of legacy feature
body = lookerpy.LegacyFeature() # LegacyFeature | legacy feature
try:
# update legacy feature
api_response = api_instance.update_legacy_feature(legacy_feature_id, body)
pprint(api_response)
except ApiException as e:
print "Exception when calling ConfigApi->update_legacy_feature: %s\n" % e
Name | Type | Description | Notes |
---|---|---|---|
legacy_feature_id | int | id of legacy feature | |
body | 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]