Skip to content

Commit

Permalink
fix: [cloudcontrolspartner] Field behavior for field display_name i…
Browse files Browse the repository at this point in the history
…n message `.google.cloud.cloudcontrolspartner.v1beta.Customer` is changed (#5679)

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

PiperOrigin-RevId: 674282173

Source-Link: googleapis/googleapis@9ebde54

Source-Link: googleapis/googleapis-gen@256435d
Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWNsb3VkY29udHJvbHNwYXJ0bmVyLy5Pd2xCb3QueWFtbCIsImgiOiIyNTY0MzVkYjM4ZmYzYTFkNmQ0OGIxNzUwNTg3NThiNzNiOGQwN2E1In0=

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* fix: Field behavior for field `display_name` in message `.google.cloud.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

Source-Link: googleapis/googleapis@ffbe783

Source-Link: googleapis/googleapis-gen@ee0f8c5
Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWNsb3VkY29udHJvbHNwYXJ0bmVyLy5Pd2xCb3QueWFtbCIsImgiOiJlZTBmOGM1YmU2MmY5MTczMzM1NTliZGVkNjY2NTMwMmVjOThiNWM5In0=

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
gcf-owl-bot[bot] and gcf-owl-bot[bot] authored Sep 17, 2024
1 parent 90a7e94 commit 727e997
Show file tree
Hide file tree
Showing 7 changed files with 66 additions and 22 deletions.
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
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
6 changes: 4 additions & 2 deletions packages/google-cloud-cloudcontrolspartner/protos/protos.d.ts

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

14 changes: 14 additions & 0 deletions packages/google-cloud-cloudcontrolspartner/protos/protos.js

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

36 changes: 28 additions & 8 deletions packages/google-cloud-cloudcontrolspartner/protos/protos.json

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

0 comments on commit 727e997

Please sign in to comment.