Skip to content

Commit 0ac8e42

Browse files
1 parent 7f8e82e commit 0ac8e42

4 files changed

Lines changed: 122 additions & 76 deletions

File tree

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

clients/google-api-services-datamanager/v1/2.0.0/com/google/api/services/datamanager/v1/DataManager.java

Lines changed: 116 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -831,31 +831,40 @@ public Search setParent(java.lang.String parent) {
831831
}
832832

833833
/**
834-
* Optional. A [filter string](//google.aip.dev/160). All fields need to be on the left
835-
* hand side of each condition (for example: `partner_link_id = 123456789`). Supported
836-
* operations: - `AND` - `=` - `!=` Supported fields: - `partner_link_id` -
837-
* `owning_account.account_type` - `owning_account.account_id` -
834+
* Optional. A [filter string](https://google.aip.dev/160). All fields need to be on the
835+
* left hand side of each condition (for example: `partner_link_id = 123456789`). Fields
836+
* must be specified using either all [camel
837+
* case](https://en.wikipedia.org/wiki/Camel_case) or all [snake
838+
* case](https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of camel case
839+
* and snake case. Supported operations: - `AND` - `=` - `!=` Supported fields: -
840+
* `partner_link_id` - `owning_account.account_type` - `owning_account.account_id` -
838841
* `partner_account.account_type` - `partner_account.account_id` Example:
839842
* `owning_account.account_type = "GOOGLE_ADS" AND partner_account.account_id = 987654321`
840843
*/
841844
@com.google.api.client.util.Key
842845
private java.lang.String filter;
843846

844-
/** Optional. A [filter string](//google.aip.dev/160). All fields need to be on the left hand side of
845-
each condition (for example: `partner_link_id = 123456789`). Supported operations: - `AND` - `=` -
846-
`!=` Supported fields: - `partner_link_id` - `owning_account.account_type` -
847-
`owning_account.account_id` - `partner_account.account_type` - `partner_account.account_id`
848-
Example: `owning_account.account_type = "GOOGLE_ADS" AND partner_account.account_id = 987654321`
847+
/** Optional. A [filter string](https://google.aip.dev/160). All fields need to be on the left hand
848+
side of each condition (for example: `partner_link_id = 123456789`). Fields must be specified using
849+
either all [camel case](https://en.wikipedia.org/wiki/Camel_case) or all [snake
850+
case](https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of camel case and snake
851+
case. Supported operations: - `AND` - `=` - `!=` Supported fields: - `partner_link_id` -
852+
`owning_account.account_type` - `owning_account.account_id` - `partner_account.account_type` -
853+
`partner_account.account_id` Example: `owning_account.account_type = "GOOGLE_ADS" AND
854+
partner_account.account_id = 987654321`
849855
*/
850856
public java.lang.String getFilter() {
851857
return filter;
852858
}
853859

854860
/**
855-
* Optional. A [filter string](//google.aip.dev/160). All fields need to be on the left
856-
* hand side of each condition (for example: `partner_link_id = 123456789`). Supported
857-
* operations: - `AND` - `=` - `!=` Supported fields: - `partner_link_id` -
858-
* `owning_account.account_type` - `owning_account.account_id` -
861+
* Optional. A [filter string](https://google.aip.dev/160). All fields need to be on the
862+
* left hand side of each condition (for example: `partner_link_id = 123456789`). Fields
863+
* must be specified using either all [camel
864+
* case](https://en.wikipedia.org/wiki/Camel_case) or all [snake
865+
* case](https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of camel case
866+
* and snake case. Supported operations: - `AND` - `=` - `!=` Supported fields: -
867+
* `partner_link_id` - `owning_account.account_type` - `owning_account.account_id` -
859868
* `partner_account.account_type` - `partner_account.account_id` Example:
860869
* `owning_account.account_type = "GOOGLE_ADS" AND partner_account.account_id = 987654321`
861870
*/
@@ -1366,30 +1375,39 @@ public List setParent(java.lang.String parent) {
13661375
}
13671376

13681377
/**
1369-
* Optional. Filters to apply to the list request. All fields need to be on the left hand
1370-
* side of each condition (for example: user_list_id = 123). **Supported Operations:** -
1371-
* `AND` - `=` - `!=` - `>` - `>=` - `<` - `<=` **Unsupported Fields:** - `name` (use get
1372-
* method instead) - `historical_pricings` and all its subfields - `pricing.start_time` -
1373-
* `pricing.end_time`
1378+
* Optional. A [filter string](https://google.aip.dev/160) to apply to the list request.
1379+
* All fields need to be on the left hand side of each condition (for example:
1380+
* `user_list_id = 123`). Fields must be specified using either all [camel
1381+
* case](https://en.wikipedia.org/wiki/Camel_case) or all [snake
1382+
* case](https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of camel case
1383+
* and snake case. **Supported Operations:** - `AND` - `=` - `!=` - `>` - `>=` - `<` -
1384+
* `<=` **Unsupported Fields:** - `name` (use get method instead) - `historical_pricings`
1385+
* and all its subfields - `pricing.start_time` - `pricing.end_time`
13741386
*/
13751387
@com.google.api.client.util.Key
13761388
private java.lang.String filter;
13771389

1378-
/** Optional. Filters to apply to the list request. All fields need to be on the left hand side of each
1379-
condition (for example: user_list_id = 123). **Supported Operations:** - `AND` - `=` - `!=` - `>` -
1380-
`>=` - `<` - `<=` **Unsupported Fields:** - `name` (use get method instead) - `historical_pricings`
1381-
and all its subfields - `pricing.start_time` - `pricing.end_time`
1390+
/** Optional. A [filter string](https://google.aip.dev/160) to apply to the list request. All fields
1391+
need to be on the left hand side of each condition (for example: `user_list_id = 123`). Fields must
1392+
be specified using either all [camel case](https://en.wikipedia.org/wiki/Camel_case) or all [snake
1393+
case](https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of camel case and snake
1394+
case. **Supported Operations:** - `AND` - `=` - `!=` - `>` - `>=` - `<` - `<=` **Unsupported
1395+
Fields:** - `name` (use get method instead) - `historical_pricings` and all its subfields -
1396+
`pricing.start_time` - `pricing.end_time`
13821397
*/
13831398
public java.lang.String getFilter() {
13841399
return filter;
13851400
}
13861401

13871402
/**
1388-
* Optional. Filters to apply to the list request. All fields need to be on the left hand
1389-
* side of each condition (for example: user_list_id = 123). **Supported Operations:** -
1390-
* `AND` - `=` - `!=` - `>` - `>=` - `<` - `<=` **Unsupported Fields:** - `name` (use get
1391-
* method instead) - `historical_pricings` and all its subfields - `pricing.start_time` -
1392-
* `pricing.end_time`
1403+
* Optional. A [filter string](https://google.aip.dev/160) to apply to the list request.
1404+
* All fields need to be on the left hand side of each condition (for example:
1405+
* `user_list_id = 123`). Fields must be specified using either all [camel
1406+
* case](https://en.wikipedia.org/wiki/Camel_case) or all [snake
1407+
* case](https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of camel case
1408+
* and snake case. **Supported Operations:** - `AND` - `=` - `!=` - `>` - `>=` - `<` -
1409+
* `<=` **Unsupported Fields:** - `name` (use get method instead) - `historical_pricings`
1410+
* and all its subfields - `pricing.start_time` - `pricing.end_time`
13931411
*/
13941412
public List setFilter(java.lang.String filter) {
13951413
this.filter = filter;
@@ -2054,30 +2072,39 @@ public List setParent(java.lang.String parent) {
20542072
}
20552073

20562074
/**
2057-
* Optional. Filters to apply to the list request. All fields need to be on the left hand
2058-
* side of each condition (for example: user_list_id = 123). **Supported Operations:** -
2059-
* `AND` - `=` - `!=` - `>` - `>=` - `<` - `<=` **Unsupported Fields:** - `name` (use get
2060-
* method instead) - `historical_pricings` and all its subfields - `pricing.start_time` -
2061-
* `pricing.end_time`
2075+
* Optional. A [filter string](https://google.aip.dev/160) to apply to the list request.
2076+
* All fields need to be on the left hand side of each condition (for example:
2077+
* `user_list_id = 123`). Fields must be specified using either all [camel
2078+
* case](https://en.wikipedia.org/wiki/Camel_case) or all [snake
2079+
* case](https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of camel case
2080+
* and snake case. **Supported Operations:** - `AND` - `=` - `!=` - `>` - `>=` - `<` -
2081+
* `<=` **Unsupported Fields:** - `name` (use get method instead) - `historical_pricings`
2082+
* and all its subfields - `pricing.start_time` - `pricing.end_time`
20622083
*/
20632084
@com.google.api.client.util.Key
20642085
private java.lang.String filter;
20652086

2066-
/** Optional. Filters to apply to the list request. All fields need to be on the left hand side of each
2067-
condition (for example: user_list_id = 123). **Supported Operations:** - `AND` - `=` - `!=` - `>` -
2068-
`>=` - `<` - `<=` **Unsupported Fields:** - `name` (use get method instead) - `historical_pricings`
2069-
and all its subfields - `pricing.start_time` - `pricing.end_time`
2087+
/** Optional. A [filter string](https://google.aip.dev/160) to apply to the list request. All fields
2088+
need to be on the left hand side of each condition (for example: `user_list_id = 123`). Fields must
2089+
be specified using either all [camel case](https://en.wikipedia.org/wiki/Camel_case) or all [snake
2090+
case](https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of camel case and snake
2091+
case. **Supported Operations:** - `AND` - `=` - `!=` - `>` - `>=` - `<` - `<=` **Unsupported
2092+
Fields:** - `name` (use get method instead) - `historical_pricings` and all its subfields -
2093+
`pricing.start_time` - `pricing.end_time`
20702094
*/
20712095
public java.lang.String getFilter() {
20722096
return filter;
20732097
}
20742098

20752099
/**
2076-
* Optional. Filters to apply to the list request. All fields need to be on the left hand
2077-
* side of each condition (for example: user_list_id = 123). **Supported Operations:** -
2078-
* `AND` - `=` - `!=` - `>` - `>=` - `<` - `<=` **Unsupported Fields:** - `name` (use get
2079-
* method instead) - `historical_pricings` and all its subfields - `pricing.start_time` -
2080-
* `pricing.end_time`
2100+
* Optional. A [filter string](https://google.aip.dev/160) to apply to the list request.
2101+
* All fields need to be on the left hand side of each condition (for example:
2102+
* `user_list_id = 123`). Fields must be specified using either all [camel
2103+
* case](https://en.wikipedia.org/wiki/Camel_case) or all [snake
2104+
* case](https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of camel case
2105+
* and snake case. **Supported Operations:** - `AND` - `=` - `!=` - `>` - `>=` - `<` -
2106+
* `<=` **Unsupported Fields:** - `name` (use get method instead) - `historical_pricings`
2107+
* and all its subfields - `pricing.start_time` - `pricing.end_time`
20812108
*/
20822109
public List setFilter(java.lang.String filter) {
20832110
this.filter = filter;
@@ -2477,30 +2504,41 @@ public List setParent(java.lang.String parent) {
24772504
}
24782505

24792506
/**
2480-
* Optional. Filters to apply to the list request. All fields need to be on the left
2481-
* hand side of each condition (for example: user_list_id = 123). **Supported
2482-
* Operations:** - `AND` - `=` - `!=` - `>` - `>=` - `<` - `<=` **Unsupported Fields:**
2483-
* - `name` (use get method instead) - `historical_pricings` and all its subfields -
2484-
* `pricing.start_time` - `pricing.end_time`
2507+
* Optional. A [filter string](https://google.aip.dev/160) to apply to the list request.
2508+
* All fields need to be on the left hand side of each condition (for example:
2509+
* `user_list_id = 123`). Fields must be specified using either all [camel
2510+
* case](https://en.wikipedia.org/wiki/Camel_case) or all [snake
2511+
* case](https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of camel
2512+
* case and snake case. **Supported Operations:** - `AND` - `=` - `!=` - `>` - `>=` -
2513+
* `<` - `<=` **Unsupported Fields:** - `name` (use get method instead) -
2514+
* `historical_pricings` and all its subfields - `pricing.start_time` -
2515+
* `pricing.end_time`
24852516
*/
24862517
@com.google.api.client.util.Key
24872518
private java.lang.String filter;
24882519

2489-
/** Optional. Filters to apply to the list request. All fields need to be on the left hand side of each
2490-
condition (for example: user_list_id = 123). **Supported Operations:** - `AND` - `=` - `!=` - `>` -
2491-
`>=` - `<` - `<=` **Unsupported Fields:** - `name` (use get method instead) - `historical_pricings`
2492-
and all its subfields - `pricing.start_time` - `pricing.end_time`
2520+
/** Optional. A [filter string](https://google.aip.dev/160) to apply to the list request. All fields
2521+
need to be on the left hand side of each condition (for example: `user_list_id = 123`). Fields must
2522+
be specified using either all [camel case](https://en.wikipedia.org/wiki/Camel_case) or all [snake
2523+
case](https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of camel case and snake
2524+
case. **Supported Operations:** - `AND` - `=` - `!=` - `>` - `>=` - `<` - `<=` **Unsupported
2525+
Fields:** - `name` (use get method instead) - `historical_pricings` and all its subfields -
2526+
`pricing.start_time` - `pricing.end_time`
24932527
*/
24942528
public java.lang.String getFilter() {
24952529
return filter;
24962530
}
24972531

24982532
/**
2499-
* Optional. Filters to apply to the list request. All fields need to be on the left
2500-
* hand side of each condition (for example: user_list_id = 123). **Supported
2501-
* Operations:** - `AND` - `=` - `!=` - `>` - `>=` - `<` - `<=` **Unsupported Fields:**
2502-
* - `name` (use get method instead) - `historical_pricings` and all its subfields -
2503-
* `pricing.start_time` - `pricing.end_time`
2533+
* Optional. A [filter string](https://google.aip.dev/160) to apply to the list request.
2534+
* All fields need to be on the left hand side of each condition (for example:
2535+
* `user_list_id = 123`). Fields must be specified using either all [camel
2536+
* case](https://en.wikipedia.org/wiki/Camel_case) or all [snake
2537+
* case](https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of camel
2538+
* case and snake case. **Supported Operations:** - `AND` - `=` - `!=` - `>` - `>=` -
2539+
* `<` - `<=` **Unsupported Fields:** - `name` (use get method instead) -
2540+
* `historical_pricings` and all its subfields - `pricing.start_time` -
2541+
* `pricing.end_time`
25042542
*/
25052543
public List setFilter(java.lang.String filter) {
25062544
this.filter = filter;
@@ -3237,31 +3275,39 @@ public List setParent(java.lang.String parent) {
32373275
}
32383276

32393277
/**
3240-
* Optional. A [filter string](//google.aip.dev/160). All fields need to be on the left
3241-
* hand side of each condition (for example: `display_name = "list 1"`). Supported
3242-
* operations: - `AND` - `=` - `!=` - `>` - `>=` - `<` - `<=` - `:` (has) Supported
3243-
* fields: - `id` - `display_name` - `description` - `membership_status` -
3244-
* `integration_code` - `access_reason` - `ingested_user_list_info.upload_key_types`
3278+
* Optional. A [filter string](https://google.aip.dev/160). All fields need to be on the
3279+
* left hand side of each condition (for example: `display_name = "list 1"`). Fields must
3280+
* be specified using either all [camel case](https://en.wikipedia.org/wiki/Camel_case) or
3281+
* all [snake case](https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of
3282+
* camel case and snake case. Supported operations: - `AND` - `=` - `!=` - `>` - `>=` -
3283+
* `<` - `<=` - `:` (has) Supported fields: - `id` - `display_name` - `description` -
3284+
* `membership_status` - `integration_code` - `access_reason` -
3285+
* `ingested_user_list_info.upload_key_types`
32453286
*/
32463287
@com.google.api.client.util.Key
32473288
private java.lang.String filter;
32483289

3249-
/** Optional. A [filter string](//google.aip.dev/160). All fields need to be on the left hand side of
3250-
each condition (for example: `display_name = "list 1"`). Supported operations: - `AND` - `=` - `!=`
3251-
- `>` - `>=` - `<` - `<=` - `:` (has) Supported fields: - `id` - `display_name` - `description` -
3252-
`membership_status` - `integration_code` - `access_reason` -
3253-
`ingested_user_list_info.upload_key_types`
3290+
/** Optional. A [filter string](https://google.aip.dev/160). All fields need to be on the left hand
3291+
side of each condition (for example: `display_name = "list 1"`). Fields must be specified using
3292+
either all [camel case](https://en.wikipedia.org/wiki/Camel_case) or all [snake
3293+
case](https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of camel case and snake
3294+
case. Supported operations: - `AND` - `=` - `!=` - `>` - `>=` - `<` - `<=` - `:` (has) Supported
3295+
fields: - `id` - `display_name` - `description` - `membership_status` - `integration_code` -
3296+
`access_reason` - `ingested_user_list_info.upload_key_types`
32543297
*/
32553298
public java.lang.String getFilter() {
32563299
return filter;
32573300
}
32583301

32593302
/**
3260-
* Optional. A [filter string](//google.aip.dev/160). All fields need to be on the left
3261-
* hand side of each condition (for example: `display_name = "list 1"`). Supported
3262-
* operations: - `AND` - `=` - `!=` - `>` - `>=` - `<` - `<=` - `:` (has) Supported
3263-
* fields: - `id` - `display_name` - `description` - `membership_status` -
3264-
* `integration_code` - `access_reason` - `ingested_user_list_info.upload_key_types`
3303+
* Optional. A [filter string](https://google.aip.dev/160). All fields need to be on the
3304+
* left hand side of each condition (for example: `display_name = "list 1"`). Fields must
3305+
* be specified using either all [camel case](https://en.wikipedia.org/wiki/Camel_case) or
3306+
* all [snake case](https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of
3307+
* camel case and snake case. Supported operations: - `AND` - `=` - `!=` - `>` - `>=` -
3308+
* `<` - `<=` - `:` (has) Supported fields: - `id` - `display_name` - `description` -
3309+
* `membership_status` - `integration_code` - `access_reason` -
3310+
* `ingested_user_list_info.upload_key_types`
32653311
*/
32663312
public List setFilter(java.lang.String filter) {
32673313
this.filter = filter;

0 commit comments

Comments
 (0)