You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
9
9
10
10
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
[**unsubscribe_all_automations**](AutomationsApi.md#unsubscribe_all_automations) | **DELETE** /api/v1/actions/organization/automations/unsubscribe | Unsubscribe from all automations in all workspaces
17
+
[**unsubscribe_automation**](AutomationsApi.md#unsubscribe_automation) | **DELETE** /api/v1/actions/workspaces/{workspaceId}/automations/{automationId}/unsubscribe | Unsubscribe from an automation
18
+
[**unsubscribe_workspace_automations**](AutomationsApi.md#unsubscribe_workspace_automations) | **DELETE** /api/v1/actions/workspaces/{workspaceId}/automations/unsubscribe | Unsubscribe from all automations in the workspace
16
19
[**update_entity_automations**](AutomationsApi.md#update_entity_automations) | **PUT** /api/v1/entities/workspaces/{workspaceId}/automations/{objectId} | Put an Automation
17
20
18
21
@@ -100,7 +103,7 @@ with gooddata_api_client.ApiClient() as api_client:
@@ -806,7 +810,7 @@ with gooddata_api_client.ApiClient() as api_client:
806
810
),
807
811
raw_exports=[
808
812
JsonApiAutomationInAttributesRawExportsInner(
809
-
request_payload=RawExportRequest(
813
+
request_payload=RawExportAutomationRequest(
810
814
custom_override=RawCustomOverride(
811
815
labels={
812
816
"key": RawCustomLabel(
@@ -854,6 +858,7 @@ with gooddata_api_client.ApiClient() as api_client:
854
858
),
855
859
file_name="result",
856
860
format="CSV",
861
+
metadata=JsonNode(),
857
862
),
858
863
),
859
864
],
@@ -1166,7 +1171,7 @@ with gooddata_api_client.ApiClient() as api_client:
1166
1171
),
1167
1172
raw_exports=[
1168
1173
AutomationRawExport(
1169
-
request_payload=RawExportRequest(
1174
+
request_payload=RawExportAutomationRequest(
1170
1175
custom_override=RawCustomOverride(
1171
1176
labels={
1172
1177
"key": RawCustomLabel(
@@ -1214,6 +1219,7 @@ with gooddata_api_client.ApiClient() as api_client:
1214
1219
),
1215
1220
file_name="result",
1216
1221
format="CSV",
1222
+
metadata=JsonNode(),
1217
1223
),
1218
1224
),
1219
1225
],
@@ -1471,7 +1477,7 @@ with gooddata_api_client.ApiClient() as api_client:
1471
1477
),
1472
1478
raw_exports=[
1473
1479
AutomationRawExport(
1474
-
request_payload=RawExportRequest(
1480
+
request_payload=RawExportAutomationRequest(
1475
1481
custom_override=RawCustomOverride(
1476
1482
labels={
1477
1483
"key": RawCustomLabel(
@@ -1519,6 +1525,7 @@ with gooddata_api_client.ApiClient() as api_client:
1519
1525
),
1520
1526
file_name="result",
1521
1527
format="CSV",
1528
+
metadata=JsonNode(),
1522
1529
),
1523
1530
),
1524
1531
],
@@ -1711,6 +1718,193 @@ No authorization required
1711
1718
1712
1719
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
1713
1720
1721
+
# **unsubscribe_all_automations**
1722
+
> unsubscribe_all_automations()
1723
+
1724
+
Unsubscribe from all automations in all workspaces
1725
+
1726
+
### Example
1727
+
1728
+
1729
+
```python
1730
+
import time
1731
+
import gooddata_api_client
1732
+
from gooddata_api_client.api import automations_api
1733
+
from pprint import pprint
1734
+
# Defining the host is optional and defaults to http://localhost
1735
+
# See configuration.py for a list of all supported configuration parameters.
# example, this endpoint has no required or optional parameters
1747
+
try:
1748
+
# Unsubscribe from all automations in all workspaces
1749
+
api_instance.unsubscribe_all_automations()
1750
+
except gooddata_api_client.ApiException as e:
1751
+
print("Exception when calling AutomationsApi->unsubscribe_all_automations: %s\n"% e)
1752
+
```
1753
+
1754
+
1755
+
### Parameters
1756
+
This endpoint does not need any parameter.
1757
+
1758
+
### Return type
1759
+
1760
+
void (empty response body)
1761
+
1762
+
### Authorization
1763
+
1764
+
No authorization required
1765
+
1766
+
### HTTP request headers
1767
+
1768
+
-**Content-Type**: Not defined
1769
+
-**Accept**: Not defined
1770
+
1771
+
1772
+
### HTTP response details
1773
+
1774
+
| Status code | Description | Response headers |
1775
+
|-------------|-------------|------------------|
1776
+
**204** | No Content | - |
1777
+
1778
+
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
1844
+
1845
+
# **unsubscribe_workspace_automations**
1846
+
> unsubscribe_workspace_automations(workspace_id)
1847
+
1848
+
Unsubscribe from all automations in the workspace
1849
+
1850
+
### Example
1851
+
1852
+
1853
+
```python
1854
+
import time
1855
+
import gooddata_api_client
1856
+
from gooddata_api_client.api import automations_api
1857
+
from pprint import pprint
1858
+
# Defining the host is optional and defaults to http://localhost
1859
+
# See configuration.py for a list of all supported configuration parameters.
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
**_from** | **int, none_type** | Start of the filtering interval. Specified by number of periods (with respect to given granularity). Typically negative (historical time interval like -2 for '2 days/weeks, ... ago'). If null, then start of the range is unbounded. | [optional]
11
+
**to** | **int, none_type** | End of the filtering interval. Specified by number of periods (with respect to given granularity). Value 'O' is representing current time-interval (current day, week, ...). If null, then end of the range is unbounded. | [optional]
12
+
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
13
+
14
+
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
explain_type ="MAQL"# str | Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `SETTINGS` - Settings used to execute explain request (optional)
536
+
explain_type ="MAQL"# str | Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `COMPRESSED_GRPC_MODEL_SVG` - Generated SVG image of the model fragment used in the query `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `COMPRESSED_SQL` - Final SQL to be executed with rolled SQL datasets `SETTINGS` - Settings used to execute explain request (optional)
537
537
538
538
# example passing only required values which don't have defaults set
539
539
try:
@@ -558,7 +558,7 @@ Name | Type | Description | Notes
**explain_type** | **str**| Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed `SETTINGS` - Settings used to execute explain request | [optional]
561
+
**explain_type** | **str**| Requested explain type. If not specified all types are bundled in a ZIP archive. `MAQL` - MAQL Abstract Syntax Tree, execution dimensions and related info `GRPC_MODEL` - Datasets used in execution `GRPC_MODEL_SVG` - Generated SVG image of the datasets `COMPRESSED_GRPC_MODEL_SVG` - Generated SVG image of the model fragment used in the query `WDF` - Workspace data filters in execution workspace context `QT` - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL `QT_SVG` - Generated SVG image of the Query Tree `OPT_QT` - Optimized Query Tree `OPT_QT_SVG` - Generated SVG image of the Optimized Query Tree `SQL` - Final SQL to be executed`COMPRESSED_SQL` - Final SQL to be executed with rolled SQL datasets`SETTINGS` - Settings used to execute explain request | [optional]
0 commit comments