Skip to content

Commit 464dd1e

Browse files
1 parent bcfa554 commit 464dd1e

File tree

6 files changed

+41
-11
lines changed

6 files changed

+41
-11
lines changed

clients/google-api-services-slides/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-slides</artifactId>
25-
<version>v1-rev20250218-2.0.0</version>
25+
<version>v1-rev20250401-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-slides:v1-rev20250218-2.0.0'
38+
implementation 'com.google.apis:google-api-services-slides:v1-rev20250401-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-slides/v1/2.0.0/com/google/api/services/slides/v1/Slides.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*
2626
* <p>
2727
* For more information about this service, see the
28-
* <a href="https://developers.google.com/slides/" target="_blank">API Documentation</a>
28+
* <a href="https://developers.google.com/workspace/slides/" target="_blank">API Documentation</a>
2929
* </p>
3030
*
3131
* <p>
@@ -700,8 +700,8 @@ public Get set(String parameterName, Object value) {
700700
}
701701
/**
702702
* Generates a thumbnail of the latest version of the specified page in the presentation and returns
703-
* a URL to the thumbnail image. This request counts as an [expensive read request](/slides/limits)
704-
* for quota purposes.
703+
* a URL to the thumbnail image. This request counts as an [expensive read
704+
* request](https://developers.google.com/workspace/slides/limits) for quota purposes.
705705
*
706706
* Create a request for the method "pages.getThumbnail".
707707
*
@@ -725,7 +725,7 @@ public class GetThumbnail extends SlidesRequest<com.google.api.services.slides.v
725725
/**
726726
* Generates a thumbnail of the latest version of the specified page in the presentation and
727727
* returns a URL to the thumbnail image. This request counts as an [expensive read
728-
* request](/slides/limits) for quota purposes.
728+
* request](https://developers.google.com/workspace/slides/limits) for quota purposes.
729729
*
730730
* Create a request for the method "pages.getThumbnail".
731731
*

clients/google-api-services-slides/v1/2.0.0/com/google/api/services/slides/v1/model/Shape.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/**
2020
* A PageElement kind representing a generic shape that doesn't have a more specific classification.
2121
* For more information, see [Size and position page
22-
* elements](https://developers.google.com/slides/api/guides/transform).
22+
* elements](https://developers.google.com/workspace/slides/api/guides/transform).
2323
*
2424
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2525
* transmitted over HTTP when working with the Google Slides API. For a detailed explanation see:

clients/google-api-services-slides/v1/2.0.0/com/google/api/services/slides/v1/model/SubstringMatchCriteria.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,15 @@ public final class SubstringMatchCriteria extends com.google.api.client.json.Gen
3737
@com.google.api.client.util.Key
3838
private java.lang.Boolean matchCase;
3939

40+
/**
41+
* Optional. True if the find value should be treated as a regular expression. Any backslashes in
42+
* the pattern should be escaped. - `True`: the search text is treated as a regular expressions. -
43+
* `False`: the search text is treated as a substring for matching.
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.lang.Boolean searchByRegex;
48+
4049
/**
4150
* The text to search for in the shape or table.
4251
* The value may be {@code null}.
@@ -63,6 +72,27 @@ public SubstringMatchCriteria setMatchCase(java.lang.Boolean matchCase) {
6372
return this;
6473
}
6574

75+
/**
76+
* Optional. True if the find value should be treated as a regular expression. Any backslashes in
77+
* the pattern should be escaped. - `True`: the search text is treated as a regular expressions. -
78+
* `False`: the search text is treated as a substring for matching.
79+
* @return value or {@code null} for none
80+
*/
81+
public java.lang.Boolean getSearchByRegex() {
82+
return searchByRegex;
83+
}
84+
85+
/**
86+
* Optional. True if the find value should be treated as a regular expression. Any backslashes in
87+
* the pattern should be escaped. - `True`: the search text is treated as a regular expressions. -
88+
* `False`: the search text is treated as a substring for matching.
89+
* @param searchByRegex searchByRegex or {@code null} for none
90+
*/
91+
public SubstringMatchCriteria setSearchByRegex(java.lang.Boolean searchByRegex) {
92+
this.searchByRegex = searchByRegex;
93+
return this;
94+
}
95+
6696
/**
6797
* The text to search for in the shape or table.
6898
* @return value or {@code null} for none

clients/google-api-services-slides/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-slides</artifactId>
11-
<version>v1-rev20250218-2.0.0</version>
12-
<name>Google Slides API v1-rev20250218-2.0.0</name>
11+
<version>v1-rev20250401-2.0.0</version>
12+
<name>Google Slides API v1-rev20250401-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-slides/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-slides</artifactId>
25-
<version>v1-rev20250218-2.0.0</version>
25+
<version>v1-rev20250401-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-slides:v1-rev20250218-2.0.0'
38+
implementation 'com.google.apis:google-api-services-slides:v1-rev20250401-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)