Skip to content

Commit 71abfc7

Browse files
1 parent 0045c74 commit 71abfc7

File tree

10 files changed

+276
-88
lines changed

10 files changed

+276
-88
lines changed

clients/google-api-services-cloudsupport/v2/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-cloudsupport</artifactId>
25-
<version>v2-rev20260113-2.0.0</version>
25+
<version>v2-rev20260409-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-cloudsupport:v2-rev20260113-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudsupport:v2-rev20260409-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudsupport/v2/2.0.0/com/google/api/services/cloudsupport/v2/CloudSupport.java

Lines changed: 56 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1587,36 +1587,48 @@ public Search setPageToken(java.lang.String pageToken) {
15871587

15881588
/**
15891589
* An expression used to filter cases. Expressions use the following fields separated by `AND`
1590-
* and specified with `=`: - `organization`: An organization name in the form
1591-
* `organizations/`. - `project`: A project name in the form `projects/`. - `state`: Can be
1592-
* `OPEN` or `CLOSED`. - `priority`: Can be `P0`, `P1`, `P2`, `P3`, or `P4`. You can specify
1593-
* multiple values for priority using the `OR` operator. For example, `priority=P1 OR
1594-
* priority=P2`. - `creator.email`: The email address of the case creator. You must specify
1595-
* either `organization` or `project`. To search across `displayName`, `description`, and
1596-
* comments, use a global restriction with no keyword or operator. For example, `"my search"`.
1597-
* To search only cases updated after a certain date, use `update_time` restricted with that
1598-
* particular date, time, and timezone in ISO datetime format. For example,
1590+
* and specified with `=`: - `state`: Can be `OPEN` or `CLOSED`. - `priority`: Can be `P0`,
1591+
* `P1`, `P2`, `P3`, or `P4`. You can specify multiple values for priority using the `OR`
1592+
* operator. For example, `priority=P1 OR priority=P2`. - `creator.email`: The email address
1593+
* of the case creator. To search across `displayName`, `description`, and comments, use a
1594+
* global restriction with no keyword or operator. For example, `"my search"`. To search only
1595+
* cases updated after a certain date, use `update_time` restricted with that particular date,
1596+
* time, and timezone in ISO datetime format. For example,
15991597
* `update_time>"2020-01-01T00:00:00-05:00"`. `update_time` only supports the greater than
1600-
* operator (`>`). Examples: - `organization="organizations/123456789"` -
1601-
* `project="projects/my-project-id"` - `project="projects/123456789"` -
1602-
* `organization="organizations/123456789" AND state=CLOSED` - `project="projects/my-project-
1603-
* id" AND creator.email="tester@example.com"` - `project="projects/my-project-id" AND
1604-
* (priority=P0 OR priority=P1)`
1598+
* operator (`>`). If you are using the `v2` version of the API, you must specify the case
1599+
* parent in the `parent` field. If you provide an empty `query`, all cases under the parent
1600+
* resource will be returned. If you are using the `v2beta` version of the API, you must
1601+
* specify the case parent in the `query` field using one of the two fields below, which are
1602+
* only available for `v2beta`. The `parent` field will be ignored. - `organization`: An
1603+
* organization name in the form `organizations/`. - `project`: A project name in the form
1604+
* `projects/`. Examples: For `v2`: - `state=CLOSED` - `state=OPEN AND
1605+
* creator.email="tester@example.com"` - `state=OPEN AND (priority=P0 OR priority=P1)` -
1606+
* `update_time>"2020-01-01T00:00:00-05:00"` For `v2beta`: -
1607+
* `organization="organizations/123456789"` - `project="projects/my-project-id"` -
1608+
* `project="projects/123456789"` - `organization="organizations/123456789" AND state=CLOSED`
1609+
* - `project="projects/my-project-id" AND creator.email="tester@example.com"` -
1610+
* `project="projects/my-project-id" AND (priority=P0 OR priority=P1)`
16051611
*/
16061612
@com.google.api.client.util.Key
16071613
private java.lang.String query;
16081614

16091615
/** An expression used to filter cases. Expressions use the following fields separated by `AND` and
1610-
specified with `=`: - `organization`: An organization name in the form `organizations/`. -
1611-
`project`: A project name in the form `projects/`. - `state`: Can be `OPEN` or `CLOSED`. -
1612-
`priority`: Can be `P0`, `P1`, `P2`, `P3`, or `P4`. You can specify multiple values for priority
1613-
using the `OR` operator. For example, `priority=P1 OR priority=P2`. - `creator.email`: The email
1614-
address of the case creator. You must specify either `organization` or `project`. To search across
1615-
`displayName`, `description`, and comments, use a global restriction with no keyword or operator.
1616-
For example, `"my search"`. To search only cases updated after a certain date, use `update_time`
1617-
restricted with that particular date, time, and timezone in ISO datetime format. For example,
1618-
`update_time>"2020-01-01T00:00:00-05:00"`. `update_time` only supports the greater than operator
1619-
(`>`). Examples: - `organization="organizations/123456789"` - `project="projects/my-project-id"` -
1616+
specified with `=`: - `state`: Can be `OPEN` or `CLOSED`. - `priority`: Can be `P0`, `P1`, `P2`,
1617+
`P3`, or `P4`. You can specify multiple values for priority using the `OR` operator. For example,
1618+
`priority=P1 OR priority=P2`. - `creator.email`: The email address of the case creator. To search
1619+
across `displayName`, `description`, and comments, use a global restriction with no keyword or
1620+
operator. For example, `"my search"`. To search only cases updated after a certain date, use
1621+
`update_time` restricted with that particular date, time, and timezone in ISO datetime format. For
1622+
example, `update_time>"2020-01-01T00:00:00-05:00"`. `update_time` only supports the greater than
1623+
operator (`>`). If you are using the `v2` version of the API, you must specify the case parent in
1624+
the `parent` field. If you provide an empty `query`, all cases under the parent resource will be
1625+
returned. If you are using the `v2beta` version of the API, you must specify the case parent in the
1626+
`query` field using one of the two fields below, which are only available for `v2beta`. The
1627+
`parent` field will be ignored. - `organization`: An organization name in the form
1628+
`organizations/`. - `project`: A project name in the form `projects/`. Examples: For `v2`: -
1629+
`state=CLOSED` - `state=OPEN AND creator.email="tester@example.com"` - `state=OPEN AND (priority=P0
1630+
OR priority=P1)` - `update_time>"2020-01-01T00:00:00-05:00"` For `v2beta`: -
1631+
`organization="organizations/123456789"` - `project="projects/my-project-id"` -
16201632
`project="projects/123456789"` - `organization="organizations/123456789" AND state=CLOSED` -
16211633
`project="projects/my-project-id" AND creator.email="tester@example.com"` - `project="projects/my-
16221634
project-id" AND (priority=P0 OR priority=P1)`
@@ -1627,21 +1639,27 @@ public java.lang.String getQuery() {
16271639

16281640
/**
16291641
* An expression used to filter cases. Expressions use the following fields separated by `AND`
1630-
* and specified with `=`: - `organization`: An organization name in the form
1631-
* `organizations/`. - `project`: A project name in the form `projects/`. - `state`: Can be
1632-
* `OPEN` or `CLOSED`. - `priority`: Can be `P0`, `P1`, `P2`, `P3`, or `P4`. You can specify
1633-
* multiple values for priority using the `OR` operator. For example, `priority=P1 OR
1634-
* priority=P2`. - `creator.email`: The email address of the case creator. You must specify
1635-
* either `organization` or `project`. To search across `displayName`, `description`, and
1636-
* comments, use a global restriction with no keyword or operator. For example, `"my search"`.
1637-
* To search only cases updated after a certain date, use `update_time` restricted with that
1638-
* particular date, time, and timezone in ISO datetime format. For example,
1642+
* and specified with `=`: - `state`: Can be `OPEN` or `CLOSED`. - `priority`: Can be `P0`,
1643+
* `P1`, `P2`, `P3`, or `P4`. You can specify multiple values for priority using the `OR`
1644+
* operator. For example, `priority=P1 OR priority=P2`. - `creator.email`: The email address
1645+
* of the case creator. To search across `displayName`, `description`, and comments, use a
1646+
* global restriction with no keyword or operator. For example, `"my search"`. To search only
1647+
* cases updated after a certain date, use `update_time` restricted with that particular date,
1648+
* time, and timezone in ISO datetime format. For example,
16391649
* `update_time>"2020-01-01T00:00:00-05:00"`. `update_time` only supports the greater than
1640-
* operator (`>`). Examples: - `organization="organizations/123456789"` -
1641-
* `project="projects/my-project-id"` - `project="projects/123456789"` -
1642-
* `organization="organizations/123456789" AND state=CLOSED` - `project="projects/my-project-
1643-
* id" AND creator.email="tester@example.com"` - `project="projects/my-project-id" AND
1644-
* (priority=P0 OR priority=P1)`
1650+
* operator (`>`). If you are using the `v2` version of the API, you must specify the case
1651+
* parent in the `parent` field. If you provide an empty `query`, all cases under the parent
1652+
* resource will be returned. If you are using the `v2beta` version of the API, you must
1653+
* specify the case parent in the `query` field using one of the two fields below, which are
1654+
* only available for `v2beta`. The `parent` field will be ignored. - `organization`: An
1655+
* organization name in the form `organizations/`. - `project`: A project name in the form
1656+
* `projects/`. Examples: For `v2`: - `state=CLOSED` - `state=OPEN AND
1657+
* creator.email="tester@example.com"` - `state=OPEN AND (priority=P0 OR priority=P1)` -
1658+
* `update_time>"2020-01-01T00:00:00-05:00"` For `v2beta`: -
1659+
* `organization="organizations/123456789"` - `project="projects/my-project-id"` -
1660+
* `project="projects/123456789"` - `organization="organizations/123456789" AND state=CLOSED`
1661+
* - `project="projects/my-project-id" AND creator.email="tester@example.com"` -
1662+
* `project="projects/my-project-id" AND (priority=P0 OR priority=P1)`
16451663
*/
16461664
public Search setQuery(java.lang.String query) {
16471665
this.query = query;

clients/google-api-services-cloudsupport/v2/2.0.0/com/google/api/services/cloudsupport/v2/model/ContentTypeInfo.java

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,13 @@ public final class ContentTypeInfo extends com.google.api.client.json.GenericJso
5151
@com.google.api.client.util.Key
5252
private java.lang.String fromFileName;
5353

54+
/**
55+
* # gdata.* are outside protos with mising documentation
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.String fromFusionId;
60+
5461
/**
5562
* # gdata.* are outside protos with mising documentation
5663
* The value may be {@code null}.
@@ -65,6 +72,13 @@ public final class ContentTypeInfo extends com.google.api.client.json.GenericJso
6572
@com.google.api.client.util.Key
6673
private java.lang.String fromUrlPath;
6774

75+
/**
76+
* # gdata.* are outside protos with mising documentation
77+
* The value may be {@code null}.
78+
*/
79+
@com.google.api.client.util.Key
80+
private java.lang.String fusionIdDetectionMetadata;
81+
6882
/**
6983
* # gdata.* are outside protos with mising documentation
7084
* @return value or {@code null} for none
@@ -116,6 +130,23 @@ public ContentTypeInfo setFromFileName(java.lang.String fromFileName) {
116130
return this;
117131
}
118132

133+
/**
134+
* # gdata.* are outside protos with mising documentation
135+
* @return value or {@code null} for none
136+
*/
137+
public java.lang.String getFromFusionId() {
138+
return fromFusionId;
139+
}
140+
141+
/**
142+
* # gdata.* are outside protos with mising documentation
143+
* @param fromFusionId fromFusionId or {@code null} for none
144+
*/
145+
public ContentTypeInfo setFromFusionId(java.lang.String fromFusionId) {
146+
this.fromFusionId = fromFusionId;
147+
return this;
148+
}
149+
119150
/**
120151
* # gdata.* are outside protos with mising documentation
121152
* @return value or {@code null} for none
@@ -150,6 +181,51 @@ public ContentTypeInfo setFromUrlPath(java.lang.String fromUrlPath) {
150181
return this;
151182
}
152183

184+
/**
185+
* # gdata.* are outside protos with mising documentation
186+
* @see #decodeFusionIdDetectionMetadata()
187+
* @return value or {@code null} for none
188+
*/
189+
public java.lang.String getFusionIdDetectionMetadata() {
190+
return fusionIdDetectionMetadata;
191+
}
192+
193+
/**
194+
* # gdata.* are outside protos with mising documentation
195+
* @see #getFusionIdDetectionMetadata()
196+
* @return Base64 decoded value or {@code null} for none
197+
*
198+
* @since 1.14
199+
*/
200+
public byte[] decodeFusionIdDetectionMetadata() {
201+
return com.google.api.client.util.Base64.decodeBase64(fusionIdDetectionMetadata);
202+
}
203+
204+
/**
205+
* # gdata.* are outside protos with mising documentation
206+
* @see #encodeFusionIdDetectionMetadata()
207+
* @param fusionIdDetectionMetadata fusionIdDetectionMetadata or {@code null} for none
208+
*/
209+
public ContentTypeInfo setFusionIdDetectionMetadata(java.lang.String fusionIdDetectionMetadata) {
210+
this.fusionIdDetectionMetadata = fusionIdDetectionMetadata;
211+
return this;
212+
}
213+
214+
/**
215+
* # gdata.* are outside protos with mising documentation
216+
* @see #setFusionIdDetectionMetadata()
217+
*
218+
* <p>
219+
* The value is encoded Base64 or {@code null} for none.
220+
* </p>
221+
*
222+
* @since 1.14
223+
*/
224+
public ContentTypeInfo encodeFusionIdDetectionMetadata(byte[] fusionIdDetectionMetadata) {
225+
this.fusionIdDetectionMetadata = com.google.api.client.util.Base64.encodeBase64URLSafeString(fusionIdDetectionMetadata);
226+
return this;
227+
}
228+
153229
@Override
154230
public ContentTypeInfo set(String fieldName, Object value) {
155231
return (ContentTypeInfo) super.set(fieldName, value);

clients/google-api-services-cloudsupport/v2/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-cloudsupport</artifactId>
11-
<version>v2-rev20260113-2.0.0</version>
12-
<name>Google Cloud Support API v2-rev20260113-2.0.0</name>
11+
<version>v2-rev20260409-2.0.0</version>
12+
<name>Google Cloud Support API v2-rev20260409-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-cloudsupport/v2/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-cloudsupport</artifactId>
25-
<version>v2-rev20260113-2.0.0</version>
25+
<version>v2-rev20260409-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-cloudsupport:v2-rev20260113-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudsupport:v2-rev20260409-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudsupport/v2beta/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-cloudsupport</artifactId>
25-
<version>v2beta-rev20260113-2.0.0</version>
25+
<version>v2beta-rev20260409-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-cloudsupport:v2beta-rev20260113-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudsupport:v2beta-rev20260409-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)