Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ enum ErrorReason {
// Postal code is not valid.
INVALID_POSTAL_CODE = 12;

// Country code is not valid.
INVALID_COUNTRY_CODE = 13;
// Deprecated: Enum is unused in the Data Manager API.
INVALID_COUNTRY_CODE = 13 [deprecated = true];

// Enum value cannot be used.
INVALID_ENUM_VALUE = 14;
Expand Down Expand Up @@ -336,4 +336,7 @@ enum ErrorReason {

// The account types are not supported for the partner link.
UNSUPPORTED_ACCOUNT_TYPE_FOR_PARTNER_LINK = 98;

// The user list membership duration is too long.
MEMBERSHIP_DURATION_TOO_LONG = 99;
}
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,12 @@ message SearchPartnerLinksRequest {
// must match the call that provided the page token.
string page_token = 3;

// Optional. A [filter string](//google.aip.dev/160). All fields need to be on
// the left hand side of each condition (for example: `partner_link_id =
// 123456789`).
// Optional. A [filter string](https://google.aip.dev/160). All fields need to
// be on the left hand side of each condition (for example: `partner_link_id =
// 123456789`). Fields must be specified using either all [camel
// case](https://en.wikipedia.org/wiki/Camel_case) or all [snake
// case](https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of
// camel case and snake case.
//
// Supported operations:
//
Expand All @@ -183,8 +186,8 @@ message SearchPartnerLinksRequest {
// - `partner_account.account_id`
//
// Example:
// `owning_account.account_type = "GOOGLE_ADS" OR partner_account.account_id =
// 987654321`
// `owning_account.account_type = "GOOGLE_ADS" AND partner_account.account_id
// = 987654321`
string filter = 4 [(google.api.field_behavior) = OPTIONAL];
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -317,20 +317,21 @@ message PairIdInfo {
(google.api.field_behavior) = IMMUTABLE
];

// Optional. Descriptive name of the publisher to be displayed in the UI for a
// Required. Descriptive name of the publisher to be displayed in the UI for a
// better targeting experience.
optional string publisher_name = 2 [(google.api.field_behavior) = OPTIONAL];
optional string publisher_name = 2 [(google.api.field_behavior) = REQUIRED];

// Output only. This field denotes the percentage of membership match of this
// Required. This field denotes the percentage of membership match of this
// user list with the corresponding publisher's first party data. Must be
// between 0 and 100 inclusive.
int32 match_rate_percentage = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
optional int32 match_rate_percentage = 3
[(google.api.field_behavior) = REQUIRED];

// Output only. The count of the advertiser's first party data records that
// have been uploaded to a clean room provider. This does not signify the size
// of a PAIR user list.
int64 advertiser_identifier_count = 4
[(google.api.field_behavior) = OUTPUT_ONLY];
// Optional. The count of the advertiser's first party data records that have
// been uploaded to a clean room provider. This does not signify the size of a
// PAIR user list.
optional int64 advertiser_identifier_count = 4
[(google.api.field_behavior) = OPTIONAL];

// Required. Immutable. Identifies a unique advertiser to publisher
// relationship with one clean room provider or across multiple clean room
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,12 @@ message ListUserListDirectLicensesRequest {
}
];

// Optional. Filters to apply to the list request. All fields need to be on
// the left hand side of each condition (for example: user_list_id = 123).
// Optional. A [filter string](https://google.aip.dev/160) to apply to the
// list request. All fields need to be on the left hand side of each condition
// (for example: `user_list_id = 123`). Fields must be specified using either
// all [camel case](https://en.wikipedia.org/wiki/Camel_case) or all [snake
// case](https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of
// camel case and snake case.
//
// **Supported Operations:**
//
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,12 @@ message ListUserListGlobalLicensesRequest {
}
];

// Optional. Filters to apply to the list request. All fields need to be on
// the left hand side of each condition (for example: user_list_id = 123).
// Optional. A [filter string](https://google.aip.dev/160) to apply to the
// list request. All fields need to be on the left hand side of each condition
// (for example: `user_list_id = 123`). Fields must be specified using either
// all [camel case](https://en.wikipedia.org/wiki/Camel_case) or all [snake
// case](https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of
// camel case and snake case.
//
// **Supported Operations:**
//
Expand Down Expand Up @@ -225,8 +229,12 @@ message ListUserListGlobalLicenseCustomerInfosRequest {
}
];

// Optional. Filters to apply to the list request. All fields need to be on
// the left hand side of each condition (for example: user_list_id = 123).
// Optional. A [filter string](https://google.aip.dev/160) to apply to the
// list request. All fields need to be on the left hand side of each condition
// (for example: `user_list_id = 123`). Fields must be specified using either
// all [camel case](https://en.wikipedia.org/wiki/Camel_case) or all [snake
// case](https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of
// camel case and snake case.
//
// **Supported Operations:**
//
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,12 @@ message ListUserListsRequest {
// match the call that provided the page token.
string page_token = 3 [(google.api.field_behavior) = OPTIONAL];

// Optional. A [filter string](//google.aip.dev/160). All fields need to be on
// the left hand side of each condition (for example: `display_name = "list
// 1"`).
// Optional. A [filter string](https://google.aip.dev/160). All fields need to
// be on the left hand side of each condition (for example: `display_name =
// "list 1"`). Fields must be specified using either all [camel
// case](https://en.wikipedia.org/wiki/Camel_case) or all [snake
// case](https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of
// camel case and snake case.
//
// Supported operations:
//
Expand Down
7 changes: 4 additions & 3 deletions packages/google-ads-datamanager/protos/protos.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 32 additions & 16 deletions packages/google-ads-datamanager/protos/protos.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 22 additions & 4 deletions packages/google-ads-datamanager/protos/protos.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,12 @@ function main(parent) {
*/
// const pageToken = 'abc123'
/**
* Optional. A filter string (//google.aip.dev/160). All fields need to be on
* the left hand side of each condition (for example: `partner_link_id =
* 123456789`).
* Optional. A filter string (https://google.aip.dev/160). All fields need to
* be on the left hand side of each condition (for example: `partner_link_id =
* 123456789`). Fields must be specified using either all camel
* case (https://en.wikipedia.org/wiki/Camel_case) or all snake
* case (https://en.wikipedia.org/wiki/Snake_case). Don't use a combination of
* camel case and snake case.
* Supported operations:
* - `AND`
* - `=`
Expand All @@ -64,8 +67,8 @@ function main(parent) {
* - `partner_account.account_type`
* - `partner_account.account_id`
* Example:
* `owning_account.account_type = "GOOGLE_ADS" OR partner_account.account_id =
* 987654321`
* `owning_account.account_type = "GOOGLE_ADS" AND partner_account.account_id
* = 987654321`
*/
// const filter = 'abc123'

Expand Down
Loading
Loading