Skip to content

Commit e5859fe

Browse files
1 parent a46748c commit e5859fe

File tree

4 files changed

+36
-33
lines changed

4 files changed

+36
-33
lines changed

clients/google-api-services-trafficdirector/v3/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-trafficdirector</artifactId>
25-
<version>v3-rev20250423-2.0.0</version>
25+
<version>v3-rev20250516-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-trafficdirector:v3-rev20250423-2.0.0'
38+
implementation 'com.google.apis:google-api-services-trafficdirector:v3-rev20250516-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-trafficdirector/v3/2.0.0/com/google/api/services/trafficdirector/v3/model/StringMatcher.java

Lines changed: 30 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@
3030
public final class StringMatcher extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* The input string must have the substring specified here. Note: empty contains match is not
34-
* allowed, please use regex instead. Examples: * ``abc`` matches the value ``xyz.abc.def``
33+
* The input string must have the substring specified here. .. note:: Empty contains match is not
34+
* allowed, please use ``safe_regex`` instead. Examples: * ``abc`` matches the value
35+
* ``xyz.abc.def``
3536
* The value may be {@code null}.
3637
*/
3738
@com.google.api.client.util.Key
@@ -53,17 +54,17 @@ public final class StringMatcher extends com.google.api.client.json.GenericJson
5354
private java.lang.String exact;
5455

5556
/**
56-
* If true, indicates the exact/prefix/suffix/contains matching should be case insensitive. This
57-
* has no effect for the safe_regex match. For example, the matcher ``data`` will match both input
58-
* string ``Data`` and ``data`` if set to true.
57+
* If ``true``, indicates the exact/prefix/suffix/contains matching should be case insensitive.
58+
* This has no effect for the ``safe_regex`` match. For example, the matcher ``data`` will match
59+
* both input string ``Data`` and ``data`` if this option is set to ``true``.
5960
* The value may be {@code null}.
6061
*/
6162
@com.google.api.client.util.Key
6263
private java.lang.Boolean ignoreCase;
6364

6465
/**
65-
* The input string must have the prefix specified here. Note: empty prefix is not allowed, please
66-
* use regex instead. Examples: * ``abc`` matches the value ``abc.xyz``
66+
* The input string must have the prefix specified here. .. note:: Empty prefix match is not
67+
* allowed, please use ``safe_regex`` instead. Examples: * ``abc`` matches the value ``abc.xyz``
6768
* The value may be {@code null}.
6869
*/
6970
@com.google.api.client.util.Key
@@ -77,25 +78,27 @@ public final class StringMatcher extends com.google.api.client.json.GenericJson
7778
private RegexMatcher safeRegex;
7879

7980
/**
80-
* The input string must have the suffix specified here. Note: empty prefix is not allowed, please
81-
* use regex instead. Examples: * ``abc`` matches the value ``xyz.abc``
81+
* The input string must have the suffix specified here. .. note:: Empty suffix match is not
82+
* allowed, please use ``safe_regex`` instead. Examples: * ``abc`` matches the value ``xyz.abc``
8283
* The value may be {@code null}.
8384
*/
8485
@com.google.api.client.util.Key
8586
private java.lang.String suffix;
8687

8788
/**
88-
* The input string must have the substring specified here. Note: empty contains match is not
89-
* allowed, please use regex instead. Examples: * ``abc`` matches the value ``xyz.abc.def``
89+
* The input string must have the substring specified here. .. note:: Empty contains match is not
90+
* allowed, please use ``safe_regex`` instead. Examples: * ``abc`` matches the value
91+
* ``xyz.abc.def``
9092
* @return value or {@code null} for none
9193
*/
9294
public java.lang.String getContains() {
9395
return contains;
9496
}
9597

9698
/**
97-
* The input string must have the substring specified here. Note: empty contains match is not
98-
* allowed, please use regex instead. Examples: * ``abc`` matches the value ``xyz.abc.def``
99+
* The input string must have the substring specified here. .. note:: Empty contains match is not
100+
* allowed, please use ``safe_regex`` instead. Examples: * ``abc`` matches the value
101+
* ``xyz.abc.def``
99102
* @param contains contains or {@code null} for none
100103
*/
101104
public StringMatcher setContains(java.lang.String contains) {
@@ -140,19 +143,19 @@ public StringMatcher setExact(java.lang.String exact) {
140143
}
141144

142145
/**
143-
* If true, indicates the exact/prefix/suffix/contains matching should be case insensitive. This
144-
* has no effect for the safe_regex match. For example, the matcher ``data`` will match both input
145-
* string ``Data`` and ``data`` if set to true.
146+
* If ``true``, indicates the exact/prefix/suffix/contains matching should be case insensitive.
147+
* This has no effect for the ``safe_regex`` match. For example, the matcher ``data`` will match
148+
* both input string ``Data`` and ``data`` if this option is set to ``true``.
146149
* @return value or {@code null} for none
147150
*/
148151
public java.lang.Boolean getIgnoreCase() {
149152
return ignoreCase;
150153
}
151154

152155
/**
153-
* If true, indicates the exact/prefix/suffix/contains matching should be case insensitive. This
154-
* has no effect for the safe_regex match. For example, the matcher ``data`` will match both input
155-
* string ``Data`` and ``data`` if set to true.
156+
* If ``true``, indicates the exact/prefix/suffix/contains matching should be case insensitive.
157+
* This has no effect for the ``safe_regex`` match. For example, the matcher ``data`` will match
158+
* both input string ``Data`` and ``data`` if this option is set to ``true``.
156159
* @param ignoreCase ignoreCase or {@code null} for none
157160
*/
158161
public StringMatcher setIgnoreCase(java.lang.Boolean ignoreCase) {
@@ -161,17 +164,17 @@ public StringMatcher setIgnoreCase(java.lang.Boolean ignoreCase) {
161164
}
162165

163166
/**
164-
* The input string must have the prefix specified here. Note: empty prefix is not allowed, please
165-
* use regex instead. Examples: * ``abc`` matches the value ``abc.xyz``
167+
* The input string must have the prefix specified here. .. note:: Empty prefix match is not
168+
* allowed, please use ``safe_regex`` instead. Examples: * ``abc`` matches the value ``abc.xyz``
166169
* @return value or {@code null} for none
167170
*/
168171
public java.lang.String getPrefix() {
169172
return prefix;
170173
}
171174

172175
/**
173-
* The input string must have the prefix specified here. Note: empty prefix is not allowed, please
174-
* use regex instead. Examples: * ``abc`` matches the value ``abc.xyz``
176+
* The input string must have the prefix specified here. .. note:: Empty prefix match is not
177+
* allowed, please use ``safe_regex`` instead. Examples: * ``abc`` matches the value ``abc.xyz``
175178
* @param prefix prefix or {@code null} for none
176179
*/
177180
public StringMatcher setPrefix(java.lang.String prefix) {
@@ -197,17 +200,17 @@ public StringMatcher setSafeRegex(RegexMatcher safeRegex) {
197200
}
198201

199202
/**
200-
* The input string must have the suffix specified here. Note: empty prefix is not allowed, please
201-
* use regex instead. Examples: * ``abc`` matches the value ``xyz.abc``
203+
* The input string must have the suffix specified here. .. note:: Empty suffix match is not
204+
* allowed, please use ``safe_regex`` instead. Examples: * ``abc`` matches the value ``xyz.abc``
202205
* @return value or {@code null} for none
203206
*/
204207
public java.lang.String getSuffix() {
205208
return suffix;
206209
}
207210

208211
/**
209-
* The input string must have the suffix specified here. Note: empty prefix is not allowed, please
210-
* use regex instead. Examples: * ``abc`` matches the value ``xyz.abc``
212+
* The input string must have the suffix specified here. .. note:: Empty suffix match is not
213+
* allowed, please use ``safe_regex`` instead. Examples: * ``abc`` matches the value ``xyz.abc``
211214
* @param suffix suffix or {@code null} for none
212215
*/
213216
public StringMatcher setSuffix(java.lang.String suffix) {

clients/google-api-services-trafficdirector/v3/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-trafficdirector</artifactId>
11-
<version>v3-rev20250423-2.0.0</version>
12-
<name>Traffic Director API v3-rev20250423-2.0.0</name>
11+
<version>v3-rev20250516-2.0.0</version>
12+
<name>Traffic Director API v3-rev20250516-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-trafficdirector/v3/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-trafficdirector</artifactId>
25-
<version>v3-rev20250423-2.0.0</version>
25+
<version>v3-rev20250516-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-trafficdirector:v3-rev20250423-2.0.0'
38+
implementation 'com.google.apis:google-api-services-trafficdirector:v3-rev20250516-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)