Skip to content

Commit c3ed7b1

Browse files
author
Phrase
committed
1 parent 63e2e8a commit c3ed7b1

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

docs/AutomationsCreateParameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**name** | **str** | name of the automation |
77
**trigger** | **str** | |
8-
**project_ids** | **List[str]** | List of project IDs to associate with the automation. Currently, only the first ID in the array is used. The array format leaves room for future support of multiple projects. |
8+
**project_ids** | **List[str]** | List of project IDs to associate with the automation. Providing more than one project ID requires the `advanced_job_automation` plan feature; accounts without this feature receive a 422 response with error field `project_ids`. |
99
**job_template_id** | **str** | id of job template that the automation uses to create jobs from | [optional]
1010
**status_filters** | **List[str]** | Translation states used when selecting keys for a job. States are derived from associated translations, not the keys themselves. When review workflow is enabled, `ready_for_review` is internally treated as `translated`. |
1111
**tags** | **List[str]** | used to filter which keys are added to jobs | [optional]

docs/AutomationsCreateParameters1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**name** | **str** | name of the automation |
77
**trigger** | **str** | |
8-
**project_ids** | **List[str]** | List of project IDs to associate with the automation. Currently, only the first ID in the array is used. The array format leaves room for future support of multiple projects. |
8+
**project_ids** | **List[str]** | List of project IDs to associate with the automation. Providing more than one project ID requires the `advanced_job_automation` plan feature; accounts without this feature receive a 422 response with error field `project_ids`. |
99
**job_template_id** | **str** | id of job template that the automation uses to create jobs from | [optional]
1010
**status_filters** | **List[str]** | translation key statuses used to filter keys that are added to jobs |
1111
**tags** | **List[str]** | used to filter which keys are added to jobs | [optional]

phrase_api/models/automations_create_parameters.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def trigger(self, trigger):
150150
def project_ids(self):
151151
"""Gets the project_ids of this AutomationsCreateParameters. # noqa: E501
152152
153-
List of project IDs to associate with the automation. Currently, only the first ID in the array is used. The array format leaves room for future support of multiple projects. # noqa: E501
153+
List of project IDs to associate with the automation. Providing more than one project ID requires the `advanced_job_automation` plan feature; accounts without this feature receive a 422 response with error field `project_ids`. # noqa: E501
154154
155155
:return: The project_ids of this AutomationsCreateParameters. # noqa: E501
156156
:rtype: List[str]
@@ -161,7 +161,7 @@ def project_ids(self):
161161
def project_ids(self, project_ids):
162162
"""Sets the project_ids of this AutomationsCreateParameters.
163163
164-
List of project IDs to associate with the automation. Currently, only the first ID in the array is used. The array format leaves room for future support of multiple projects. # noqa: E501
164+
List of project IDs to associate with the automation. Providing more than one project ID requires the `advanced_job_automation` plan feature; accounts without this feature receive a 422 response with error field `project_ids`. # noqa: E501
165165
166166
:param project_ids: The project_ids of this AutomationsCreateParameters. # noqa: E501
167167
:type: List[str]

phrase_api/models/automations_create_parameters1.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def trigger(self, trigger):
150150
def project_ids(self):
151151
"""Gets the project_ids of this AutomationsCreateParameters1. # noqa: E501
152152
153-
List of project IDs to associate with the automation. Currently, only the first ID in the array is used. The array format leaves room for future support of multiple projects. # noqa: E501
153+
List of project IDs to associate with the automation. Providing more than one project ID requires the `advanced_job_automation` plan feature; accounts without this feature receive a 422 response with error field `project_ids`. # noqa: E501
154154
155155
:return: The project_ids of this AutomationsCreateParameters1. # noqa: E501
156156
:rtype: List[str]
@@ -161,7 +161,7 @@ def project_ids(self):
161161
def project_ids(self, project_ids):
162162
"""Sets the project_ids of this AutomationsCreateParameters1.
163163
164-
List of project IDs to associate with the automation. Currently, only the first ID in the array is used. The array format leaves room for future support of multiple projects. # noqa: E501
164+
List of project IDs to associate with the automation. Providing more than one project ID requires the `advanced_job_automation` plan feature; accounts without this feature receive a 422 response with error field `project_ids`. # noqa: E501
165165
166166
:param project_ids: The project_ids of this AutomationsCreateParameters1. # noqa: E501
167167
:type: List[str]

0 commit comments

Comments
 (0)