Skip to content

Commit

Permalink
fix!: Field behavior for field display_name in message `.google.clo…
Browse files Browse the repository at this point in the history
…ud.cloudcontrolspartner.v1beta.Customer` is changed

feat: Field behavior for field `customer_onboarding_state` in message `.google.cloud.cloudcontrolspartner.v1beta.Customer` is changed
feat: Field behavior for field `is_onboarded` in message `.google.cloud.cloudcontrolspartner.v1beta.Customer` is changed
feat: A new value `ACCESS_TRANSPARENCY_LOGS_SUPPORT_CASE_VIEWER` is added to enum `.google.cloud.cloudcontrolspartner.v1beta.PartnerPermissions.Permission`
docs: A comment for field `display_name` in message `.google.cloud.cloudcontrolspartner.v1beta.Customer` is changed

PiperOrigin-RevId: 674282504
  • Loading branch information
Google APIs authored and copybara-github committed Sep 13, 2024
1 parent 9ebde54 commit ffbe783
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
13 changes: 7 additions & 6 deletions google/cloud/cloudcontrolspartner/v1beta/customers.proto
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,15 @@ message Customer {
// `organizations/{organization}/locations/{location}/customers/{customer}`
string name = 1 [(google.api.field_behavior) = IDENTIFIER];

// The customer organization's display name. E.g. "google.com".
string display_name = 2;
// Required. Display name for the customer
string display_name = 2 [(google.api.field_behavior) = REQUIRED];

// Container for customer onboarding steps
CustomerOnboardingState customer_onboarding_state = 3;
// Output only. Container for customer onboarding steps
CustomerOnboardingState customer_onboarding_state = 3
[(google.api.field_behavior) = OUTPUT_ONLY];

// Indicates whether a customer is fully onboarded
bool is_onboarded = 4;
// Output only. Indicates whether a customer is fully onboarded
bool is_onboarded = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
}

// Request to list customers
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ message PartnerPermissions {

// Permission for External Key Manager connection status
ASSURED_WORKLOADS_EKM_CONNECTION_STATUS = 4;

// Permission for support case details for Access Transparency log entries
ACCESS_TRANSPARENCY_LOGS_SUPPORT_CASE_VIEWER = 5;
}

// Identifier. Format:
Expand Down

0 comments on commit ffbe783

Please sign in to comment.