Skip to content
This repository was archived by the owner on Sep 27, 2023. It is now read-only.

Commit 872f37c

Browse files
feat: Add a new operator on companyDisplayNames filter to further support fuzzy match by treating input value as a multi word token (#788)
- [ ] Regenerate this pull request now. feat: Add a new option TELECOMMUTE_JOBS_EXCLUDED under enum TelecommutePreference to completely filter out the telecommute jobs in response docs: Deprecate option TELECOMMUTE_EXCLUDED under enum TelecommutePreference PiperOrigin-RevId: 450699841 Source-Link: googleapis/googleapis@c6fb6ac Source-Link: https://github.com/googleapis/googleapis-gen/commit/6b27e78749c63eb4d21ea920ac10bdc5c7ba4caf Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNmIyN2U3ODc0OWM2M2ViNGQyMWVhOTIwYWMxMGJkYzVjN2JhNGNhZiJ9 chore(deps): upgrade gapic-generator-java to 2.8.0 and update gax-java to 2.18.1 PiperOrigin-RevId: 450543911 Source-Link: googleapis/googleapis@5528344 Source-Link: https://github.com/googleapis/googleapis-gen/commit/9f6775cab1958982b88967a43e5e806af0f135db Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiOWY2Nzc1Y2FiMTk1ODk4MmI4ODk2N2E0M2U1ZTgwNmFmMGYxMzVkYiJ9
1 parent dc4628b commit 872f37c

30 files changed

+295
-208
lines changed

google-cloud-talent/src/main/java/com/google/cloud/talent/v4/CompanyServiceClient.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
import com.google.api.core.ApiFuture;
2020
import com.google.api.core.ApiFutures;
21-
import com.google.api.core.BetaApi;
2221
import com.google.api.gax.core.BackgroundResource;
2322
import com.google.api.gax.paging.AbstractFixedSizeCollection;
2423
import com.google.api.gax.paging.AbstractPage;
@@ -125,7 +124,6 @@ public static final CompanyServiceClient create(CompanyServiceSettings settings)
125124
* Constructs an instance of CompanyServiceClient, using the given stub for making calls. This is
126125
* for advanced usage - prefer using create(CompanyServiceSettings).
127126
*/
128-
@BetaApi("A restructuring of stub classes is planned, so this may break in the future")
129127
public static final CompanyServiceClient create(CompanyServiceStub stub) {
130128
return new CompanyServiceClient(stub);
131129
}
@@ -140,7 +138,6 @@ protected CompanyServiceClient(CompanyServiceSettings settings) throws IOExcepti
140138
this.stub = ((CompanyServiceStubSettings) settings.getStubSettings()).createStub();
141139
}
142140

143-
@BetaApi("A restructuring of stub classes is planned, so this may break in the future")
144141
protected CompanyServiceClient(CompanyServiceStub stub) {
145142
this.settings = null;
146143
this.stub = stub;
@@ -150,7 +147,6 @@ public final CompanyServiceSettings getSettings() {
150147
return settings;
151148
}
152149

153-
@BetaApi("A restructuring of stub classes is planned, so this may break in the future")
154150
public CompanyServiceStub getStub() {
155151
return stub;
156152
}

google-cloud-talent/src/main/java/com/google/cloud/talent/v4/CompletionClient.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
package com.google.cloud.talent.v4;
1818

19-
import com.google.api.core.BetaApi;
2019
import com.google.api.gax.core.BackgroundResource;
2120
import com.google.api.gax.rpc.UnaryCallable;
2221
import com.google.cloud.talent.v4.stub.CompletionStub;
@@ -120,7 +119,6 @@ public static final CompletionClient create(CompletionSettings settings) throws
120119
* Constructs an instance of CompletionClient, using the given stub for making calls. This is for
121120
* advanced usage - prefer using create(CompletionSettings).
122121
*/
123-
@BetaApi("A restructuring of stub classes is planned, so this may break in the future")
124122
public static final CompletionClient create(CompletionStub stub) {
125123
return new CompletionClient(stub);
126124
}
@@ -134,7 +132,6 @@ protected CompletionClient(CompletionSettings settings) throws IOException {
134132
this.stub = ((CompletionStubSettings) settings.getStubSettings()).createStub();
135133
}
136134

137-
@BetaApi("A restructuring of stub classes is planned, so this may break in the future")
138135
protected CompletionClient(CompletionStub stub) {
139136
this.settings = null;
140137
this.stub = stub;
@@ -144,7 +141,6 @@ public final CompletionSettings getSettings() {
144141
return settings;
145142
}
146143

147-
@BetaApi("A restructuring of stub classes is planned, so this may break in the future")
148144
public CompletionStub getStub() {
149145
return stub;
150146
}

google-cloud-talent/src/main/java/com/google/cloud/talent/v4/EventServiceClient.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
package com.google.cloud.talent.v4;
1818

19-
import com.google.api.core.BetaApi;
2019
import com.google.api.gax.core.BackgroundResource;
2120
import com.google.api.gax.rpc.UnaryCallable;
2221
import com.google.cloud.talent.v4.stub.EventServiceStub;
@@ -114,7 +113,6 @@ public static final EventServiceClient create(EventServiceSettings settings) thr
114113
* Constructs an instance of EventServiceClient, using the given stub for making calls. This is
115114
* for advanced usage - prefer using create(EventServiceSettings).
116115
*/
117-
@BetaApi("A restructuring of stub classes is planned, so this may break in the future")
118116
public static final EventServiceClient create(EventServiceStub stub) {
119117
return new EventServiceClient(stub);
120118
}
@@ -129,7 +127,6 @@ protected EventServiceClient(EventServiceSettings settings) throws IOException {
129127
this.stub = ((EventServiceStubSettings) settings.getStubSettings()).createStub();
130128
}
131129

132-
@BetaApi("A restructuring of stub classes is planned, so this may break in the future")
133130
protected EventServiceClient(EventServiceStub stub) {
134131
this.settings = null;
135132
this.stub = stub;
@@ -139,7 +136,6 @@ public final EventServiceSettings getSettings() {
139136
return settings;
140137
}
141138

142-
@BetaApi("A restructuring of stub classes is planned, so this may break in the future")
143139
public EventServiceStub getStub() {
144140
return stub;
145141
}

google-cloud-talent/src/main/java/com/google/cloud/talent/v4/JobServiceClient.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
import com.google.api.core.ApiFuture;
2020
import com.google.api.core.ApiFutures;
21-
import com.google.api.core.BetaApi;
2221
import com.google.api.gax.core.BackgroundResource;
2322
import com.google.api.gax.longrunning.OperationFuture;
2423
import com.google.api.gax.paging.AbstractFixedSizeCollection;
@@ -130,7 +129,6 @@ public static final JobServiceClient create(JobServiceSettings settings) throws
130129
* Constructs an instance of JobServiceClient, using the given stub for making calls. This is for
131130
* advanced usage - prefer using create(JobServiceSettings).
132131
*/
133-
@BetaApi("A restructuring of stub classes is planned, so this may break in the future")
134132
public static final JobServiceClient create(JobServiceStub stub) {
135133
return new JobServiceClient(stub);
136134
}
@@ -145,7 +143,6 @@ protected JobServiceClient(JobServiceSettings settings) throws IOException {
145143
this.operationsClient = OperationsClient.create(this.stub.getOperationsStub());
146144
}
147145

148-
@BetaApi("A restructuring of stub classes is planned, so this may break in the future")
149146
protected JobServiceClient(JobServiceStub stub) {
150147
this.settings = null;
151148
this.stub = stub;
@@ -156,7 +153,6 @@ public final JobServiceSettings getSettings() {
156153
return settings;
157154
}
158155

159-
@BetaApi("A restructuring of stub classes is planned, so this may break in the future")
160156
public JobServiceStub getStub() {
161157
return stub;
162158
}

google-cloud-talent/src/main/java/com/google/cloud/talent/v4/TenantServiceClient.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
import com.google.api.core.ApiFuture;
2020
import com.google.api.core.ApiFutures;
21-
import com.google.api.core.BetaApi;
2221
import com.google.api.gax.core.BackgroundResource;
2322
import com.google.api.gax.paging.AbstractFixedSizeCollection;
2423
import com.google.api.gax.paging.AbstractPage;
@@ -125,7 +124,6 @@ public static final TenantServiceClient create(TenantServiceSettings settings)
125124
* Constructs an instance of TenantServiceClient, using the given stub for making calls. This is
126125
* for advanced usage - prefer using create(TenantServiceSettings).
127126
*/
128-
@BetaApi("A restructuring of stub classes is planned, so this may break in the future")
129127
public static final TenantServiceClient create(TenantServiceStub stub) {
130128
return new TenantServiceClient(stub);
131129
}
@@ -140,7 +138,6 @@ protected TenantServiceClient(TenantServiceSettings settings) throws IOException
140138
this.stub = ((TenantServiceStubSettings) settings.getStubSettings()).createStub();
141139
}
142140

143-
@BetaApi("A restructuring of stub classes is planned, so this may break in the future")
144141
protected TenantServiceClient(TenantServiceStub stub) {
145142
this.settings = null;
146143
this.stub = stub;
@@ -150,7 +147,6 @@ public final TenantServiceSettings getSettings() {
150147
return settings;
151148
}
152149

153-
@BetaApi("A restructuring of stub classes is planned, so this may break in the future")
154150
public TenantServiceStub getStub() {
155151
return stub;
156152
}

google-cloud-talent/src/main/java/com/google/cloud/talent/v4/stub/CompanyServiceStubSettings.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,6 @@ public UnaryCallSettings<DeleteCompanyRequest, Empty> deleteCompanySettings() {
187187
return listCompaniesSettings;
188188
}
189189

190-
@BetaApi("A restructuring of stub classes is planned, so this may break in the future")
191190
public CompanyServiceStub createStub() throws IOException {
192191
if (getTransportChannelProvider()
193192
.getTransportName()

google-cloud-talent/src/main/java/com/google/cloud/talent/v4/stub/CompletionStubSettings.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ public UnaryCallSettings<CompleteQueryRequest, CompleteQueryResponse> completeQu
9292
return completeQuerySettings;
9393
}
9494

95-
@BetaApi("A restructuring of stub classes is planned, so this may break in the future")
9695
public CompletionStub createStub() throws IOException {
9796
if (getTransportChannelProvider()
9897
.getTransportName()

google-cloud-talent/src/main/java/com/google/cloud/talent/v4/stub/EventServiceStubSettings.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ public UnaryCallSettings<CreateClientEventRequest, ClientEvent> createClientEven
9292
return createClientEventSettings;
9393
}
9494

95-
@BetaApi("A restructuring of stub classes is planned, so this may break in the future")
9695
public EventServiceStub createStub() throws IOException {
9796
if (getTransportChannelProvider()
9897
.getTransportName()

google-cloud-talent/src/main/java/com/google/cloud/talent/v4/stub/JobServiceStubSettings.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,6 @@ public UnaryCallSettings<SearchJobsRequest, SearchJobsResponse> searchJobsForAle
258258
return searchJobsForAlertSettings;
259259
}
260260

261-
@BetaApi("A restructuring of stub classes is planned, so this may break in the future")
262261
public JobServiceStub createStub() throws IOException {
263262
if (getTransportChannelProvider()
264263
.getTransportName()

google-cloud-talent/src/main/java/com/google/cloud/talent/v4/stub/TenantServiceStubSettings.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,6 @@ public UnaryCallSettings<DeleteTenantRequest, Empty> deleteTenantSettings() {
186186
return listTenantsSettings;
187187
}
188188

189-
@BetaApi("A restructuring of stub classes is planned, so this may break in the future")
190189
public TenantServiceStub createStub() throws IOException {
191190
if (getTransportChannelProvider()
192191
.getTransportName()

0 commit comments

Comments
 (0)