Skip to content

Commit a4696cb

Browse files
1 parent 4940b0f commit a4696cb

15 files changed

Lines changed: 134 additions & 110 deletions

clients/google-api-services-sheets/v4/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-sheets</artifactId>
25-
<version>v4-rev20251110-2.0.0</version>
25+
<version>v4-rev20260213-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-sheets:v4-rev20251110-2.0.0'
38+
implementation 'com.google.apis:google-api-services-sheets:v4-rev20260213-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-sheets/v4/2.0.0/com/google/api/services/sheets/v4/Sheets.java

Lines changed: 59 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class Sheets extends com.google.api.client.googleapis.services.json.Abstr
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -590,16 +590,18 @@ public Get set(String parameterName, Object value) {
590590
}
591591
}
592592
/**
593-
* Returns the spreadsheet at the given ID. The caller must specify the spreadsheet ID. This method
593+
* Returns the spreadsheet at the given ID. The caller must specify the spreadsheet ID. For more
594+
* information, see [Read, write, and search
595+
* metadata](https://developers.google.com/workspace/sheets/api/guides/metadata). This method
594596
* differs from GetSpreadsheet in that it allows selecting which subsets of spreadsheet data to
595597
* return by specifying a dataFilters parameter. Multiple DataFilters can be specified. Specifying
596598
* one or more data filters returns the portions of the spreadsheet that intersect ranges matched by
597-
* any of the filters. By default, data within grids is not returned. You can include grid data one
598-
* of 2 ways: * Specify a [field
599+
* any of the filters. By default, data within grids is not returned. You can include grid data in
600+
* one of two ways: * Specify a [field
599601
* mask](https://developers.google.com/workspace/sheets/api/guides/field-masks) listing your desired
600-
* fields using the `fields` URL parameter in HTTP * Set the includeGridData parameter to true. If a
601-
* field mask is set, the `includeGridData` parameter is ignored For large spreadsheets, as a best
602-
* practice, retrieve only the specific spreadsheet fields that you want.
602+
* fields using the `fields` URL parameter in HTTP. * Set the includeGridData parameter to `true`.
603+
* If a field mask is set, the `includeGridData` parameter is ignored. For large spreadsheets, as a
604+
* best practice, retrieve only the specific spreadsheet fields that you want.
603605
*
604606
* Create a request for the method "spreadsheets.getByDataFilter".
605607
*
@@ -621,15 +623,17 @@ public class GetByDataFilter extends SheetsRequest<com.google.api.services.sheet
621623
private static final String REST_PATH = "v4/spreadsheets/{spreadsheetId}:getByDataFilter";
622624

623625
/**
624-
* Returns the spreadsheet at the given ID. The caller must specify the spreadsheet ID. This
625-
* method differs from GetSpreadsheet in that it allows selecting which subsets of spreadsheet
626-
* data to return by specifying a dataFilters parameter. Multiple DataFilters can be specified.
627-
* Specifying one or more data filters returns the portions of the spreadsheet that intersect
628-
* ranges matched by any of the filters. By default, data within grids is not returned. You can
629-
* include grid data one of 2 ways: * Specify a [field
626+
* Returns the spreadsheet at the given ID. The caller must specify the spreadsheet ID. For more
627+
* information, see [Read, write, and search
628+
* metadata](https://developers.google.com/workspace/sheets/api/guides/metadata). This method
629+
* differs from GetSpreadsheet in that it allows selecting which subsets of spreadsheet data to
630+
* return by specifying a dataFilters parameter. Multiple DataFilters can be specified. Specifying
631+
* one or more data filters returns the portions of the spreadsheet that intersect ranges matched
632+
* by any of the filters. By default, data within grids is not returned. You can include grid data
633+
* in one of two ways: * Specify a [field
630634
* mask](https://developers.google.com/workspace/sheets/api/guides/field-masks) listing your
631-
* desired fields using the `fields` URL parameter in HTTP * Set the includeGridData parameter to
632-
* true. If a field mask is set, the `includeGridData` parameter is ignored For large
635+
* desired fields using the `fields` URL parameter in HTTP. * Set the includeGridData parameter to
636+
* `true`. If a field mask is set, the `includeGridData` parameter is ignored. For large
633637
* spreadsheets, as a best practice, retrieve only the specific spreadsheet fields that you want.
634638
*
635639
* Create a request for the method "spreadsheets.getByDataFilter".
@@ -748,7 +752,8 @@ public class DeveloperMetadata {
748752

749753
/**
750754
* Returns the developer metadata with the specified ID. The caller must specify the spreadsheet ID
751-
* and the developer metadata's unique metadataId.
755+
* and the developer metadata's unique metadataId. For more information, see [Read, write, and
756+
* search metadata](https://developers.google.com/workspace/sheets/api/guides/metadata).
752757
*
753758
* Create a request for the method "developerMetadata.get".
754759
*
@@ -771,7 +776,8 @@ public class Get extends SheetsRequest<com.google.api.services.sheets.v4.model.D
771776

772777
/**
773778
* Returns the developer metadata with the specified ID. The caller must specify the spreadsheet
774-
* ID and the developer metadata's unique metadataId.
779+
* ID and the developer metadata's unique metadataId. For more information, see [Read, write, and
780+
* search metadata](https://developers.google.com/workspace/sheets/api/guides/metadata).
775781
*
776782
* Create a request for the method "developerMetadata.get".
777783
*
@@ -893,10 +899,12 @@ public Get set(String parameterName, Object value) {
893899
}
894900
}
895901
/**
896-
* Returns all developer metadata matching the specified DataFilter. If the provided DataFilter
897-
* represents a DeveloperMetadataLookup object, this will return all DeveloperMetadata entries
898-
* selected by it. If the DataFilter represents a location in a spreadsheet, this will return all
899-
* developer metadata associated with locations intersecting that region.
902+
* Returns all developer metadata matching the specified DataFilter. For more information, see
903+
* [Read, write, and search
904+
* metadata](https://developers.google.com/workspace/sheets/api/guides/metadata). If the provided
905+
* DataFilter represents a DeveloperMetadataLookup object, this will return all DeveloperMetadata
906+
* entries selected by it. If the DataFilter represents a location in a spreadsheet, this will
907+
* return all developer metadata associated with locations intersecting that region.
900908
*
901909
* Create a request for the method "developerMetadata.search".
902910
*
@@ -918,10 +926,12 @@ public class Search extends SheetsRequest<com.google.api.services.sheets.v4.mode
918926
private static final String REST_PATH = "v4/spreadsheets/{spreadsheetId}/developerMetadata:search";
919927

920928
/**
921-
* Returns all developer metadata matching the specified DataFilter. If the provided DataFilter
922-
* represents a DeveloperMetadataLookup object, this will return all DeveloperMetadata entries
923-
* selected by it. If the DataFilter represents a location in a spreadsheet, this will return all
924-
* developer metadata associated with locations intersecting that region.
929+
* Returns all developer metadata matching the specified DataFilter. For more information, see
930+
* [Read, write, and search
931+
* metadata](https://developers.google.com/workspace/sheets/api/guides/metadata). If the provided
932+
* DataFilter represents a DeveloperMetadataLookup object, this will return all DeveloperMetadata
933+
* entries selected by it. If the DataFilter represents a location in a spreadsheet, this will
934+
* return all developer metadata associated with locations intersecting that region.
925935
*
926936
* Create a request for the method "developerMetadata.search".
927937
*
@@ -1591,10 +1601,11 @@ public BatchClear set(String parameterName, Object value) {
15911601
}
15921602
}
15931603
/**
1594-
* Clears one or more ranges of values from a spreadsheet. The caller must specify the spreadsheet
1595-
* ID and one or more DataFilters. Ranges matching any of the specified data filters will be
1596-
* cleared. Only values are cleared -- all other properties of the cell (such as formatting, data
1597-
* validation, etc..) are kept.
1604+
* Clears one or more ranges of values from a spreadsheet. For more information, see [Read, write,
1605+
* and search metadata](https://developers.google.com/workspace/sheets/api/guides/metadata). The
1606+
* caller must specify the spreadsheet ID and one or more DataFilters. Ranges matching any of the
1607+
* specified data filters will be cleared. Only values are cleared -- all other properties of the
1608+
* cell (such as formatting, data validation, etc.) are kept.
15981609
*
15991610
* Create a request for the method "values.batchClearByDataFilter".
16001611
*
@@ -1617,10 +1628,11 @@ public class BatchClearByDataFilter extends SheetsRequest<com.google.api.service
16171628
private static final String REST_PATH = "v4/spreadsheets/{spreadsheetId}/values:batchClearByDataFilter";
16181629

16191630
/**
1620-
* Clears one or more ranges of values from a spreadsheet. The caller must specify the spreadsheet
1621-
* ID and one or more DataFilters. Ranges matching any of the specified data filters will be
1622-
* cleared. Only values are cleared -- all other properties of the cell (such as formatting, data
1623-
* validation, etc..) are kept.
1631+
* Clears one or more ranges of values from a spreadsheet. For more information, see [Read, write,
1632+
* and search metadata](https://developers.google.com/workspace/sheets/api/guides/metadata). The
1633+
* caller must specify the spreadsheet ID and one or more DataFilters. Ranges matching any of the
1634+
* specified data filters will be cleared. Only values are cleared -- all other properties of the
1635+
* cell (such as formatting, data validation, etc.) are kept.
16241636
*
16251637
* Create a request for the method "values.batchClearByDataFilter".
16261638
*
@@ -1947,7 +1959,9 @@ public BatchGet set(String parameterName, Object value) {
19471959
}
19481960
}
19491961
/**
1950-
* Returns one or more ranges of values that match the specified data filters. The caller must
1962+
* Returns one or more ranges of values that match the specified data filters. For more information,
1963+
* see [Read, write, and search
1964+
* metadata](https://developers.google.com/workspace/sheets/api/guides/metadata). The caller must
19511965
* specify the spreadsheet ID and one or more DataFilters. Ranges that match any of the data filters
19521966
* in the request will be returned.
19531967
*
@@ -1972,7 +1986,9 @@ public class BatchGetByDataFilter extends SheetsRequest<com.google.api.services.
19721986
private static final String REST_PATH = "v4/spreadsheets/{spreadsheetId}/values:batchGetByDataFilter";
19731987

19741988
/**
1975-
* Returns one or more ranges of values that match the specified data filters. The caller must
1989+
* Returns one or more ranges of values that match the specified data filters. For more
1990+
* information, see [Read, write, and search
1991+
* metadata](https://developers.google.com/workspace/sheets/api/guides/metadata). The caller must
19761992
* specify the spreadsheet ID and one or more DataFilters. Ranges that match any of the data
19771993
* filters in the request will be returned.
19781994
*
@@ -2190,8 +2206,9 @@ public BatchUpdate set(String parameterName, Object value) {
21902206
}
21912207
}
21922208
/**
2193-
* Sets values in one or more ranges of a spreadsheet. The caller must specify the spreadsheet ID, a
2194-
* valueInputOption, and one or more DataFilterValueRanges.
2209+
* Sets values in one or more ranges of a spreadsheet. For more information, see [Read, write, and
2210+
* search metadata](https://developers.google.com/workspace/sheets/api/guides/metadata). The caller
2211+
* must specify the spreadsheet ID, a valueInputOption, and one or more DataFilterValueRanges.
21952212
*
21962213
* Create a request for the method "values.batchUpdateByDataFilter".
21972214
*
@@ -2214,8 +2231,10 @@ public class BatchUpdateByDataFilter extends SheetsRequest<com.google.api.servic
22142231
private static final String REST_PATH = "v4/spreadsheets/{spreadsheetId}/values:batchUpdateByDataFilter";
22152232

22162233
/**
2217-
* Sets values in one or more ranges of a spreadsheet. The caller must specify the spreadsheet ID,
2218-
* a valueInputOption, and one or more DataFilterValueRanges.
2234+
* Sets values in one or more ranges of a spreadsheet. For more information, see [Read, write, and
2235+
* search metadata](https://developers.google.com/workspace/sheets/api/guides/metadata). The
2236+
* caller must specify the spreadsheet ID, a valueInputOption, and one or more
2237+
* DataFilterValueRanges.
22192238
*
22202239
* Create a request for the method "values.batchUpdateByDataFilter".
22212240
*
@@ -2979,8 +2998,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
29792998
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
29802999
* <li>Android: {@code newCompatibleTransport} from
29813000
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
2982-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
2983-
* </li>
3001+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
29843002
* </ul>
29853003
* @param jsonFactory JSON factory, which may be:
29863004
* <ul>

clients/google-api-services-sheets/v4/2.0.0/com/google/api/services/sheets/v4/model/AddFilterViewRequest.java

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

3232
/**
33-
* The filter to add. The filterViewId field is optional; if one is not set, an id will be
33+
* The filter to add. The filterViewId field is optional. If one is not set, an ID will be
3434
* randomly generated. (It is an error to specify the ID of a filter that already exists.)
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key
3838
private FilterView filter;
3939

4040
/**
41-
* The filter to add. The filterViewId field is optional; if one is not set, an id will be
41+
* The filter to add. The filterViewId field is optional. If one is not set, an ID will be
4242
* randomly generated. (It is an error to specify the ID of a filter that already exists.)
4343
* @return value or {@code null} for none
4444
*/
@@ -47,7 +47,7 @@ public FilterView getFilter() {
4747
}
4848

4949
/**
50-
* The filter to add. The filterViewId field is optional; if one is not set, an id will be
50+
* The filter to add. The filterViewId field is optional. If one is not set, an ID will be
5151
* randomly generated. (It is an error to specify the ID of a filter that already exists.)
5252
* @param filter filter or {@code null} for none
5353
*/

clients/google-api-services-sheets/v4/2.0.0/com/google/api/services/sheets/v4/model/BasicFilter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
package com.google.api.services.sheets.v4.model;
1818

1919
/**
20-
* The default filter associated with a sheet.
20+
* The default filter associated with a sheet. For more information, see [Manage data visibility
21+
* with filters](https://developers.google.com/workspace/sheets/api/guides/filters).
2122
*
2223
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2324
* transmitted over HTTP when working with the Google Sheets API. For a detailed explanation see:

clients/google-api-services-sheets/v4/2.0.0/com/google/api/services/sheets/v4/model/BatchClearValuesByDataFilterResponse.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ public final class BatchClearValuesByDataFilterResponse extends com.google.api.c
3232
/**
3333
* The ranges that were cleared, in [A1
3434
* notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell). If the
35-
* requests are for an unbounded range or a ranger larger than the bounds of the sheet, this is
36-
* the actual ranges that were cleared, bounded to the sheet's limits.
35+
* requests are for an unbounded range or a range larger than the bounds of the sheet, this is the
36+
* actual ranges that were cleared, bounded to the sheet's limits.
3737
* The value may be {@code null}.
3838
*/
3939
@com.google.api.client.util.Key
@@ -49,8 +49,8 @@ public final class BatchClearValuesByDataFilterResponse extends com.google.api.c
4949
/**
5050
* The ranges that were cleared, in [A1
5151
* notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell). If the
52-
* requests are for an unbounded range or a ranger larger than the bounds of the sheet, this is
53-
* the actual ranges that were cleared, bounded to the sheet's limits.
52+
* requests are for an unbounded range or a range larger than the bounds of the sheet, this is the
53+
* actual ranges that were cleared, bounded to the sheet's limits.
5454
* @return value or {@code null} for none
5555
*/
5656
public java.util.List<java.lang.String> getClearedRanges() {
@@ -60,8 +60,8 @@ public java.util.List<java.lang.String> getClearedRanges() {
6060
/**
6161
* The ranges that were cleared, in [A1
6262
* notation](https://developers.google.com/workspace/sheets/api/guides/concepts#cell). If the
63-
* requests are for an unbounded range or a ranger larger than the bounds of the sheet, this is
64-
* the actual ranges that were cleared, bounded to the sheet's limits.
63+
* requests are for an unbounded range or a range larger than the bounds of the sheet, this is the
64+
* actual ranges that were cleared, bounded to the sheet's limits.
6565
* @param clearedRanges clearedRanges or {@code null} for none
6666
*/
6767
public BatchClearValuesByDataFilterResponse setClearedRanges(java.util.List<java.lang.String> clearedRanges) {

clients/google-api-services-sheets/v4/2.0.0/com/google/api/services/sheets/v4/model/BatchClearValuesResponse.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ public final class BatchClearValuesResponse extends com.google.api.client.json.G
3131

3232
/**
3333
* The ranges that were cleared, in A1 notation. If the requests are for an unbounded range or a
34-
* ranger larger than the bounds of the sheet, this is the actual ranges that were cleared,
35-
* bounded to the sheet's limits.
34+
* range larger than the bounds of the sheet, this is the actual ranges that were cleared, bounded
35+
* to the sheet's limits.
3636
* The value may be {@code null}.
3737
*/
3838
@com.google.api.client.util.Key
@@ -47,8 +47,8 @@ public final class BatchClearValuesResponse extends com.google.api.client.json.G
4747

4848
/**
4949
* The ranges that were cleared, in A1 notation. If the requests are for an unbounded range or a
50-
* ranger larger than the bounds of the sheet, this is the actual ranges that were cleared,
51-
* bounded to the sheet's limits.
50+
* range larger than the bounds of the sheet, this is the actual ranges that were cleared, bounded
51+
* to the sheet's limits.
5252
* @return value or {@code null} for none
5353
*/
5454
public java.util.List<java.lang.String> getClearedRanges() {
@@ -57,8 +57,8 @@ public java.util.List<java.lang.String> getClearedRanges() {
5757

5858
/**
5959
* The ranges that were cleared, in A1 notation. If the requests are for an unbounded range or a
60-
* ranger larger than the bounds of the sheet, this is the actual ranges that were cleared,
61-
* bounded to the sheet's limits.
60+
* range larger than the bounds of the sheet, this is the actual ranges that were cleared, bounded
61+
* to the sheet's limits.
6262
* @param clearedRanges clearedRanges or {@code null} for none
6363
*/
6464
public BatchClearValuesResponse setClearedRanges(java.util.List<java.lang.String> clearedRanges) {

0 commit comments

Comments
 (0)