Skip to content

Commit ddb4f28

Browse files
Google APIscopybara-github
authored andcommitted
docs: Update documentation comments to match tone and style with the rest of Cloud documentation. Adding customer level pubsub events for primary domain verification and primary domain change. Enabled support for boolean as an allowed parameter value. Added legacy_sku field to TransferableSku.
PiperOrigin-RevId: 367097700
1 parent 7239c84 commit ddb4f28

4 files changed

Lines changed: 585 additions & 639 deletions

File tree

google/cloud/channel/v1/common.proto

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,12 @@ message CloudIdentityInfo {
9696
// Output only. The primary domain name.
9797
string primary_domain = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
9898

99-
// Whether the domain is verified.
100-
bool is_domain_verified = 4;
99+
// Output only. Whether the domain is verified.
100+
// This field is not returned for a Customer's cloud_identity_info resource.
101+
// Partners can use the domains.get() method of the Workspace SDK's
102+
// Directory API, or listen to the PRIMARY_DOMAIN_VERIFIED Pub/Sub event in
103+
// to track domain verification of their resolve Workspace customers.
104+
bool is_domain_verified = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
101105

102106
// The alternate email.
103107
string alternate_email = 6;
@@ -130,6 +134,9 @@ message Value {
130134

131135
// Represents an 'Any' proto value.
132136
google.protobuf.Any proto_value = 4;
137+
138+
// Represents a boolean value.
139+
bool bool_value = 5;
133140
}
134141
}
135142

google/cloud/channel/v1/entitlements.proto

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,9 @@ message TransferableSku {
209209

210210
// The SKU pertaining to the provisioning resource as specified in the Offer.
211211
Sku sku = 11;
212+
213+
// Optional. The customer to transfer has an entitlement with the populated legacy SKU.
214+
Sku legacy_sku = 12 [(google.api.field_behavior) = OPTIONAL];
212215
}
213216

214217
// Specifies transfer eligibility of a SKU.

0 commit comments

Comments
 (0)