Skip to content

Commit d4dd268

Browse files
Google APIscopybara-github
authored andcommitted
feat: Add new enum value, new filter in ListCustomersRequest of Cloud Channel API
PiperOrigin-RevId: 443474187
1 parent 6b3fdce commit d4dd268

3 files changed

Lines changed: 10 additions & 4 deletions

File tree

google/cloud/channel/v1/entitlements.proto

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@ message Entitlement {
104104
// Optional. This purchase order (PO) information is for resellers to use for their
105105
// company tracking usage. If a purchaseOrderId value is given, it appears in
106106
// the API responses and shows up in the invoice. The property accepts up to
107-
// 80 plain text characters.
107+
// 80 plain text characters. This is only supported for Google Workspace
108+
// entitlements.
108109
string purchase_order_id = 19 [(google.api.field_behavior) = OPTIONAL];
109110

110111
// Output only. Settings for trial offers.

google/cloud/channel/v1/service.proto

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -999,6 +999,11 @@ message ListCustomersRequest {
999999
// [ListCustomersResponse.next_page_token][google.cloud.channel.v1.ListCustomersResponse.next_page_token] of the previous
10001000
// [CloudChannelService.ListCustomers][google.cloud.channel.v1.CloudChannelService.ListCustomers] call.
10011001
string page_token = 3 [(google.api.field_behavior) = OPTIONAL];
1002+
1003+
// Optional. Filters applied to the [CloudChannelService.ListCustomers] results. See
1004+
// https://cloud.google.com/channel/docs/concepts/google-cloud/filter-customers
1005+
// for more information.
1006+
string filter = 4 [(google.api.field_behavior) = OPTIONAL];
10021007
}
10031008

10041009
// Response message for [CloudChannelService.ListCustomers][google.cloud.channel.v1.CloudChannelService.ListCustomers].

google/cloud/channel/v1/subscriber_event.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,15 +105,15 @@ message EntitlementEvent {
105105
}
106106

107107
// Represents information which resellers will get as part of notification from
108-
// Cloud Pub/Sub.
108+
// Pub/Sub.
109109
message SubscriberEvent {
110110
// Specifies the Pub/Sub event provided to the partners.
111111
// This is a required field.
112112
oneof event {
113-
// Customer event send as part of Pub/Sub event to partners.
113+
// Customer event sent as part of Pub/Sub event to partners.
114114
CustomerEvent customer_event = 1;
115115

116-
// Entitlement event send as part of Pub/Sub event to partners.
116+
// Entitlement event sent as part of Pub/Sub event to partners.
117117
EntitlementEvent entitlement_event = 2;
118118
}
119119
}

0 commit comments

Comments
 (0)