@@ -55,9 +55,7 @@ service CompanyService {
5555 rpc GetCompany (GetCompanyRequest ) returns (Company ) {
5656 option (google.api.http ) = {
5757 get : "/v4beta1/{name=projects/*/tenants/*/companies/*}"
58- additional_bindings {
59- get : "/v4beta1/{name=projects/*/companies/*}"
60- }
58+ additional_bindings { get : "/v4beta1/{name=projects/*/companies/*}" }
6159 };
6260 option (google.api.method_signature ) = "name" ;
6361 }
@@ -80,9 +78,7 @@ service CompanyService {
8078 rpc DeleteCompany (DeleteCompanyRequest ) returns (google.protobuf.Empty ) {
8179 option (google.api.http ) = {
8280 delete : "/v4beta1/{name=projects/*/tenants/*/companies/*}"
83- additional_bindings {
84- delete : "/v4beta1/{name=projects/*/companies/*}"
85- }
81+ additional_bindings { delete : "/v4beta1/{name=projects/*/companies/*}" }
8682 };
8783 option (google.api.method_signature ) = "name" ;
8884 }
@@ -91,9 +87,7 @@ service CompanyService {
9187 rpc ListCompanies (ListCompaniesRequest ) returns (ListCompaniesResponse ) {
9288 option (google.api.http ) = {
9389 get : "/v4beta1/{parent=projects/*/tenants/*}/companies"
94- additional_bindings {
95- get : "/v4beta1/{parent=projects/*}/companies"
96- }
90+ additional_bindings { get : "/v4beta1/{parent=projects/*}/companies" }
9791 };
9892 option (google.api.method_signature ) = "parent" ;
9993 }
@@ -129,24 +123,27 @@ message GetCompanyRequest {
129123 // example, "projects/api-test-project/companies/bar".
130124 string name = 1 [
131125 (google.api.field_behavior ) = REQUIRED ,
132- (google.api.resource_reference ) = {
133- type : "jobs.googleapis.com/Company"
134- }
126+ (google.api.resource_reference ) = { type : "jobs.googleapis.com/Company" }
135127 ];
136128}
137129
138130// Request for updating a specified company.
139131message UpdateCompanyRequest {
140- // Required. The company resource to replace the current resource in the system.
132+ // Required. The company resource to replace the current resource in the
133+ // system.
141134 Company company = 1 [(google.api.field_behavior ) = REQUIRED ];
142135
143136 // Strongly recommended for the best service experience.
144137 //
145- // If [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask] is provided, only the specified fields in
146- // [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are updated. Otherwise all the fields are updated.
138+ // If
139+ // [update_mask][google.cloud.talent.v4beta1.UpdateCompanyRequest.update_mask]
140+ // is provided, only the specified fields in
141+ // [company][google.cloud.talent.v4beta1.UpdateCompanyRequest.company] are
142+ // updated. Otherwise all the fields are updated.
147143 //
148144 // A field mask to specify the company fields to be updated. Only
149- // top level fields of [Company][google.cloud.talent.v4beta1.Company] are supported.
145+ // top level fields of [Company][google.cloud.talent.v4beta1.Company] are
146+ // supported.
150147 google.protobuf.FieldMask update_mask = 2 ;
151148}
152149
@@ -162,9 +159,7 @@ message DeleteCompanyRequest {
162159 // example, "projects/foo/companies/bar".
163160 string name = 1 [
164161 (google.api.field_behavior ) = REQUIRED ,
165- (google.api.resource_reference ) = {
166- type : "jobs.googleapis.com/Company"
167- }
162+ (google.api.resource_reference ) = { type : "jobs.googleapis.com/Company" }
168163 ];
169164}
170165
@@ -195,8 +190,9 @@ message ListCompaniesRequest {
195190 //
196191 // Defaults to false.
197192 //
198- // If true, at most [page_size][google.cloud.talent.v4beta1.ListCompaniesRequest.page_size] of companies are fetched, among which
199- // only those with open jobs are returned.
193+ // If true, at most
194+ // [page_size][google.cloud.talent.v4beta1.ListCompaniesRequest.page_size] of
195+ // companies are fetched, among which only those with open jobs are returned.
200196 bool require_open_jobs = 4 ;
201197}
202198
0 commit comments