Skip to content

Commit 451e71f

Browse files
1 parent c0449df commit 451e71f

File tree

4 files changed

+42
-34
lines changed

4 files changed

+42
-34
lines changed

clients/google-api-services-tasks/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-tasks</artifactId>
25-
<version>v1-rev20250105-2.0.0</version>
25+
<version>v1-rev20250302-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-tasks:v1-rev20250105-2.0.0'
38+
implementation 'com.google.apis:google-api-services-tasks:v1-rev20250302-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-tasks/v1/2.0.0/com/google/api/services/tasks/Tasks.java

Lines changed: 36 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -599,21 +599,22 @@ public List setUploadProtocol(java.lang.String uploadProtocol) {
599599
}
600600

601601
/**
602-
* Maximum number of task lists returned on one page. Optional. The default is 20 (max
603-
* allowed: 100).
602+
* Maximum number of task lists returned on one page. Optional. The default is 1000 (max
603+
* allowed: 1000).
604604
*/
605605
@com.google.api.client.util.Key
606606
private java.lang.Integer maxResults;
607607

608-
/** Maximum number of task lists returned on one page. Optional. The default is 20 (max allowed: 100).
608+
/** Maximum number of task lists returned on one page. Optional. The default is 1000 (max allowed:
609+
1000).
609610
*/
610611
public java.lang.Integer getMaxResults() {
611612
return maxResults;
612613
}
613614

614615
/**
615-
* Maximum number of task lists returned on one page. Optional. The default is 20 (max
616-
* allowed: 100).
616+
* Maximum number of task lists returned on one page. Optional. The default is 1000 (max
617+
* allowed: 1000).
617618
*/
618619
public List setMaxResults(java.lang.Integer maxResults) {
619620
this.maxResults = maxResults;
@@ -1982,14 +1983,14 @@ public Move setTask(java.lang.String task) {
19821983
/**
19831984
* Optional. Destination task list identifier. If set, the task is moved from tasklist to the
19841985
* destinationTasklist list. Otherwise the task is moved within its current list. Recurrent
1985-
* tasks cannot currently be moved between lists. Optional.
1986+
* tasks cannot currently be moved between lists.
19861987
*/
19871988
@com.google.api.client.util.Key
19881989
private java.lang.String destinationTasklist;
19891990

19901991
/** Optional. Destination task list identifier. If set, the task is moved from tasklist to the
19911992
destinationTasklist list. Otherwise the task is moved within its current list. Recurrent tasks
1992-
cannot currently be moved between lists. Optional.
1993+
cannot currently be moved between lists.
19931994
*/
19941995
public java.lang.String getDestinationTasklist() {
19951996
return destinationTasklist;
@@ -1998,61 +1999,68 @@ public java.lang.String getDestinationTasklist() {
19981999
/**
19992000
* Optional. Destination task list identifier. If set, the task is moved from tasklist to the
20002001
* destinationTasklist list. Otherwise the task is moved within its current list. Recurrent
2001-
* tasks cannot currently be moved between lists. Optional.
2002+
* tasks cannot currently be moved between lists.
20022003
*/
20032004
public Move setDestinationTasklist(java.lang.String destinationTasklist) {
20042005
this.destinationTasklist = destinationTasklist;
20052006
return this;
20062007
}
20072008

20082009
/**
2009-
* New parent task identifier. If the task is moved to the top level, this parameter is
2010-
* omitted. The task set as parent must exist in the task list and can not be hidden. Assigned
2011-
* tasks can not be set as parent task (have subtasks) or be moved under a parent task (become
2012-
* subtasks). Optional.
2010+
* Optional. New parent task identifier. If the task is moved to the top level, this parameter
2011+
* is omitted. The task set as parent must exist in the task list and can not be hidden.
2012+
* Exceptions: 1. Assigned tasks can not be set as parent task (have subtasks) or be moved
2013+
* under a parent task (become subtasks). 2. Tasks that are both completed and hidden cannot
2014+
* be nested, so the parent field must be empty.
20132015
*/
20142016
@com.google.api.client.util.Key
20152017
private java.lang.String parent;
20162018

2017-
/** New parent task identifier. If the task is moved to the top level, this parameter is omitted. The
2018-
task set as parent must exist in the task list and can not be hidden. Assigned tasks can not be set
2019-
as parent task (have subtasks) or be moved under a parent task (become subtasks). Optional.
2019+
/** Optional. New parent task identifier. If the task is moved to the top level, this parameter is
2020+
omitted. The task set as parent must exist in the task list and can not be hidden. Exceptions: 1.
2021+
Assigned tasks can not be set as parent task (have subtasks) or be moved under a parent task
2022+
(become subtasks). 2. Tasks that are both completed and hidden cannot be nested, so the parent
2023+
field must be empty.
20202024
*/
20212025
public java.lang.String getParent() {
20222026
return parent;
20232027
}
20242028

20252029
/**
2026-
* New parent task identifier. If the task is moved to the top level, this parameter is
2027-
* omitted. The task set as parent must exist in the task list and can not be hidden. Assigned
2028-
* tasks can not be set as parent task (have subtasks) or be moved under a parent task (become
2029-
* subtasks). Optional.
2030+
* Optional. New parent task identifier. If the task is moved to the top level, this parameter
2031+
* is omitted. The task set as parent must exist in the task list and can not be hidden.
2032+
* Exceptions: 1. Assigned tasks can not be set as parent task (have subtasks) or be moved
2033+
* under a parent task (become subtasks). 2. Tasks that are both completed and hidden cannot
2034+
* be nested, so the parent field must be empty.
20302035
*/
20312036
public Move setParent(java.lang.String parent) {
20322037
this.parent = parent;
20332038
return this;
20342039
}
20352040

20362041
/**
2037-
* New previous sibling task identifier. If the task is moved to the first position among its
2038-
* siblings, this parameter is omitted. The task set as previous must exist in the task list
2039-
* and can not be hidden. Optional.
2042+
* Optional. New previous sibling task identifier. If the task is moved to the first position
2043+
* among its siblings, this parameter is omitted. The task set as previous must exist in the
2044+
* task list and can not be hidden. Exceptions: 1. Tasks that are both completed and hidden
2045+
* can only be moved to position 0, so the previous field must be empty.
20402046
*/
20412047
@com.google.api.client.util.Key
20422048
private java.lang.String previous;
20432049

2044-
/** New previous sibling task identifier. If the task is moved to the first position among its
2045-
siblings, this parameter is omitted. The task set as previous must exist in the task list and can
2046-
not be hidden. Optional.
2050+
/** Optional. New previous sibling task identifier. If the task is moved to the first position among
2051+
its siblings, this parameter is omitted. The task set as previous must exist in the task list and
2052+
can not be hidden. Exceptions: 1. Tasks that are both completed and hidden can only be moved to
2053+
position 0, so the previous field must be empty.
20472054
*/
20482055
public java.lang.String getPrevious() {
20492056
return previous;
20502057
}
20512058

20522059
/**
2053-
* New previous sibling task identifier. If the task is moved to the first position among its
2054-
* siblings, this parameter is omitted. The task set as previous must exist in the task list
2055-
* and can not be hidden. Optional.
2060+
* Optional. New previous sibling task identifier. If the task is moved to the first position
2061+
* among its siblings, this parameter is omitted. The task set as previous must exist in the
2062+
* task list and can not be hidden. Exceptions: 1. Tasks that are both completed and hidden
2063+
* can only be moved to position 0, so the previous field must be empty.
20562064
*/
20572065
public Move setPrevious(java.lang.String previous) {
20582066
this.previous = previous;

clients/google-api-services-tasks/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-tasks</artifactId>
11-
<version>v1-rev20250105-2.0.0</version>
12-
<name>Google Tasks API v1-rev20250105-2.0.0</name>
11+
<version>v1-rev20250302-2.0.0</version>
12+
<name>Google Tasks API v1-rev20250302-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-tasks/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-tasks</artifactId>
25-
<version>v1-rev20250105-2.0.0</version>
25+
<version>v1-rev20250302-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-tasks:v1-rev20250105-2.0.0'
38+
implementation 'com.google.apis:google-api-services-tasks:v1-rev20250302-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)