Skip to content

Commit f920e08

Browse files
feat: Add an API method for reordering firewall policies (#1587)
* chore: set packed = false on field_behavior extension PiperOrigin-RevId: 604675854 Source-Link: googleapis/googleapis@42c04fe Source-Link: https://github.com/googleapis/googleapis-gen/commit/a1ed8a97a00d02fe456f6ebd4160c5b2b000ad75 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiYTFlZDhhOTdhMDBkMDJmZTQ1NmY2ZWJkNDE2MGM1YjJiMDAwYWQ3NSJ9 build: Update protobuf to 25.2 in WORKSPACE build: Update grpc to 1.60.0 in WORKSPACE build: Remove pin for boringssl in WORKSPACE build: Update bazel to 6.3.0 in .bazeliskrc PiperOrigin-RevId: 603226138 Source-Link: googleapis/googleapis@2aec9e1 Source-Link: https://github.com/googleapis/googleapis-gen/commit/e9a5c2ef37b4d69c93e39141d87aae0b193c00b1 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZTlhNWMyZWYzN2I0ZDY5YzkzZTM5MTQxZDg3YWFlMGIxOTNjMDBiMSJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * feat: Add an API method for reordering firewall policies PiperOrigin-RevId: 607015517 Source-Link: googleapis/googleapis@c43e216 Source-Link: https://github.com/googleapis/googleapis-gen/commit/71c27adc96b0c80093b4a413815bd93943196bb2 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNzFjMjdhZGM5NmIwYzgwMDkzYjRhNDEzODE1YmQ5Mzk0MzE5NmJiMiJ9 * 🦉 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>
1 parent caa2d65 commit f920e08

File tree

326 files changed

+1549
-814
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

326 files changed

+1549
-814
lines changed

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/AdminServiceClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/AdminServiceSettings.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -23,7 +23,6 @@
2323
import static com.google.cloud.pubsublite.v1.AdminServiceClient.ListTopicsPagedResponse;
2424

2525
import com.google.api.core.ApiFunction;
26-
import com.google.api.core.BetaApi;
2726
import com.google.api.gax.core.GoogleCredentialsProvider;
2827
import com.google.api.gax.core.InstantiatingExecutorProvider;
2928
import com.google.api.gax.grpc.InstantiatingGrpcChannelProvider;
@@ -259,7 +258,6 @@ public static TransportChannelProvider defaultTransportChannelProvider() {
259258
return AdminServiceStubSettings.defaultTransportChannelProvider();
260259
}
261260

262-
@BetaApi("The surface for customizing headers is not stable yet and may change in the future.")
263261
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() {
264262
return AdminServiceStubSettings.defaultApiClientHeaderProviderBuilder();
265263
}

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/CursorServiceClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/CursorServiceSettings.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -19,7 +19,6 @@
1919
import static com.google.cloud.pubsublite.v1.CursorServiceClient.ListPartitionCursorsPagedResponse;
2020

2121
import com.google.api.core.ApiFunction;
22-
import com.google.api.core.BetaApi;
2322
import com.google.api.gax.core.GoogleCredentialsProvider;
2423
import com.google.api.gax.core.InstantiatingExecutorProvider;
2524
import com.google.api.gax.grpc.InstantiatingGrpcChannelProvider;
@@ -134,7 +133,6 @@ public static TransportChannelProvider defaultTransportChannelProvider() {
134133
return CursorServiceStubSettings.defaultTransportChannelProvider();
135134
}
136135

137-
@BetaApi("The surface for customizing headers is not stable yet and may change in the future.")
138136
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() {
139137
return CursorServiceStubSettings.defaultApiClientHeaderProviderBuilder();
140138
}

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/PartitionAssignmentServiceClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/PartitionAssignmentServiceSettings.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -17,7 +17,6 @@
1717
package com.google.cloud.pubsublite.v1;
1818

1919
import com.google.api.core.ApiFunction;
20-
import com.google.api.core.BetaApi;
2120
import com.google.api.gax.core.GoogleCredentialsProvider;
2221
import com.google.api.gax.core.InstantiatingExecutorProvider;
2322
import com.google.api.gax.grpc.InstantiatingGrpcChannelProvider;
@@ -116,7 +115,6 @@ public static TransportChannelProvider defaultTransportChannelProvider() {
116115
return PartitionAssignmentServiceStubSettings.defaultTransportChannelProvider();
117116
}
118117

119-
@BetaApi("The surface for customizing headers is not stable yet and may change in the future.")
120118
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() {
121119
return PartitionAssignmentServiceStubSettings.defaultApiClientHeaderProviderBuilder();
122120
}

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/PublisherServiceClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/PublisherServiceSettings.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -17,7 +17,6 @@
1717
package com.google.cloud.pubsublite.v1;
1818

1919
import com.google.api.core.ApiFunction;
20-
import com.google.api.core.BetaApi;
2120
import com.google.api.gax.core.GoogleCredentialsProvider;
2221
import com.google.api.gax.core.InstantiatingExecutorProvider;
2322
import com.google.api.gax.grpc.InstantiatingGrpcChannelProvider;
@@ -113,7 +112,6 @@ public static TransportChannelProvider defaultTransportChannelProvider() {
113112
return PublisherServiceStubSettings.defaultTransportChannelProvider();
114113
}
115114

116-
@BetaApi("The surface for customizing headers is not stable yet and may change in the future.")
117115
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() {
118116
return PublisherServiceStubSettings.defaultApiClientHeaderProviderBuilder();
119117
}

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/SubscriberServiceClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/SubscriberServiceSettings.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -17,7 +17,6 @@
1717
package com.google.cloud.pubsublite.v1;
1818

1919
import com.google.api.core.ApiFunction;
20-
import com.google.api.core.BetaApi;
2120
import com.google.api.gax.core.GoogleCredentialsProvider;
2221
import com.google.api.gax.core.InstantiatingExecutorProvider;
2322
import com.google.api.gax.grpc.InstantiatingGrpcChannelProvider;
@@ -113,7 +112,6 @@ public static TransportChannelProvider defaultTransportChannelProvider() {
113112
return SubscriberServiceStubSettings.defaultTransportChannelProvider();
114113
}
115114

116-
@BetaApi("The surface for customizing headers is not stable yet and may change in the future.")
117115
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() {
118116
return SubscriberServiceStubSettings.defaultApiClientHeaderProviderBuilder();
119117
}

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/TopicStatsServiceClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/TopicStatsServiceSettings.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -17,7 +17,6 @@
1717
package com.google.cloud.pubsublite.v1;
1818

1919
import com.google.api.core.ApiFunction;
20-
import com.google.api.core.BetaApi;
2120
import com.google.api.gax.core.GoogleCredentialsProvider;
2221
import com.google.api.gax.core.InstantiatingExecutorProvider;
2322
import com.google.api.gax.grpc.InstantiatingGrpcChannelProvider;
@@ -129,7 +128,6 @@ public static TransportChannelProvider defaultTransportChannelProvider() {
129128
return TopicStatsServiceStubSettings.defaultTransportChannelProvider();
130129
}
131130

132-
@BetaApi("The surface for customizing headers is not stable yet and may change in the future.")
133131
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() {
134132
return TopicStatsServiceStubSettings.defaultApiClientHeaderProviderBuilder();
135133
}

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/AdminServiceStub.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/AdminServiceStubSettings.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -651,7 +651,6 @@ public static TransportChannelProvider defaultTransportChannelProvider() {
651651
return defaultGrpcTransportProviderBuilder().build();
652652
}
653653

654-
@BetaApi("The surface for customizing headers is not stable yet and may change in the future.")
655654
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() {
656655
return ApiClientHeaderProvider.newBuilder()
657656
.setGeneratedLibToken(

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/CursorServiceStub.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/CursorServiceStubSettings.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -20,7 +20,6 @@
2020

2121
import com.google.api.core.ApiFunction;
2222
import com.google.api.core.ApiFuture;
23-
import com.google.api.core.BetaApi;
2423
import com.google.api.gax.core.GaxProperties;
2524
import com.google.api.gax.core.GoogleCredentialsProvider;
2625
import com.google.api.gax.core.InstantiatingExecutorProvider;
@@ -257,7 +256,6 @@ public static TransportChannelProvider defaultTransportChannelProvider() {
257256
return defaultGrpcTransportProviderBuilder().build();
258257
}
259258

260-
@BetaApi("The surface for customizing headers is not stable yet and may change in the future.")
261259
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() {
262260
return ApiClientHeaderProvider.newBuilder()
263261
.setGeneratedLibToken(

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/GrpcAdminServiceCallableFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/GrpcAdminServiceStub.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/GrpcCursorServiceCallableFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/GrpcCursorServiceStub.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/GrpcPartitionAssignmentServiceCallableFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/GrpcPartitionAssignmentServiceStub.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/GrpcPublisherServiceCallableFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/GrpcPublisherServiceStub.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/GrpcSubscriberServiceCallableFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/GrpcSubscriberServiceStub.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/GrpcTopicStatsServiceCallableFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/GrpcTopicStatsServiceStub.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/PartitionAssignmentServiceStub.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/PartitionAssignmentServiceStubSettings.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -17,7 +17,6 @@
1717
package com.google.cloud.pubsublite.v1.stub;
1818

1919
import com.google.api.core.ApiFunction;
20-
import com.google.api.core.BetaApi;
2120
import com.google.api.gax.core.GaxProperties;
2221
import com.google.api.gax.core.GoogleCredentialsProvider;
2322
import com.google.api.gax.core.InstantiatingExecutorProvider;
@@ -159,7 +158,6 @@ public static TransportChannelProvider defaultTransportChannelProvider() {
159158
return defaultGrpcTransportProviderBuilder().build();
160159
}
161160

162-
@BetaApi("The surface for customizing headers is not stable yet and may change in the future.")
163161
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() {
164162
return ApiClientHeaderProvider.newBuilder()
165163
.setGeneratedLibToken(

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/PublisherServiceStub.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/PublisherServiceStubSettings.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -17,7 +17,6 @@
1717
package com.google.cloud.pubsublite.v1.stub;
1818

1919
import com.google.api.core.ApiFunction;
20-
import com.google.api.core.BetaApi;
2120
import com.google.api.gax.core.GaxProperties;
2221
import com.google.api.gax.core.GoogleCredentialsProvider;
2322
import com.google.api.gax.core.InstantiatingExecutorProvider;
@@ -155,7 +154,6 @@ public static TransportChannelProvider defaultTransportChannelProvider() {
155154
return defaultGrpcTransportProviderBuilder().build();
156155
}
157156

158-
@BetaApi("The surface for customizing headers is not stable yet and may change in the future.")
159157
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() {
160158
return ApiClientHeaderProvider.newBuilder()
161159
.setGeneratedLibToken(

google-cloud-pubsublite/src/main/java/com/google/cloud/pubsublite/v1/stub/SubscriberServiceStub.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 Google LLC
2+
* Copyright 2024 Google LLC
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)