Skip to content

Commit 9cd6b96

Browse files
feat: Add an API method for reordering firewall policies (#1538)
* 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 1b025fa commit 9cd6b96

Some content is hidden

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

45 files changed

+45
-56
lines changed

google-cloud-logging/src/main/java/com/google/cloud/logging/v2/ConfigClient.java

+1-1
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-logging/src/main/java/com/google/cloud/logging/v2/ConfigSettings.java

+1-3
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.logging.v2.ConfigClient.ListViewsPagedResponse;
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;
@@ -356,7 +355,6 @@ public static TransportChannelProvider defaultTransportChannelProvider() {
356355
return ConfigServiceV2StubSettings.defaultTransportChannelProvider();
357356
}
358357

359-
@BetaApi("The surface for customizing headers is not stable yet and may change in the future.")
360358
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() {
361359
return ConfigServiceV2StubSettings.defaultApiClientHeaderProviderBuilder();
362360
}

google-cloud-logging/src/main/java/com/google/cloud/logging/v2/LoggingClient.java

+1-1
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-logging/src/main/java/com/google/cloud/logging/v2/LoggingSettings.java

+1-3
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.
@@ -21,7 +21,6 @@
2121
import static com.google.cloud.logging.v2.LoggingClient.ListMonitoredResourceDescriptorsPagedResponse;
2222

2323
import com.google.api.core.ApiFunction;
24-
import com.google.api.core.BetaApi;
2524
import com.google.api.gax.core.GoogleCredentialsProvider;
2625
import com.google.api.gax.core.InstantiatingExecutorProvider;
2726
import com.google.api.gax.grpc.InstantiatingGrpcChannelProvider;
@@ -162,7 +161,6 @@ public static TransportChannelProvider defaultTransportChannelProvider() {
162161
return LoggingServiceV2StubSettings.defaultTransportChannelProvider();
163162
}
164163

165-
@BetaApi("The surface for customizing headers is not stable yet and may change in the future.")
166164
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() {
167165
return LoggingServiceV2StubSettings.defaultApiClientHeaderProviderBuilder();
168166
}

google-cloud-logging/src/main/java/com/google/cloud/logging/v2/MetricsClient.java

+1-1
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-logging/src/main/java/com/google/cloud/logging/v2/MetricsSettings.java

+1-3
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.logging.v2.MetricsClient.ListLogMetricsPagedResponse;
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;
@@ -141,7 +140,6 @@ public static TransportChannelProvider defaultTransportChannelProvider() {
141140
return MetricsServiceV2StubSettings.defaultTransportChannelProvider();
142141
}
143142

144-
@BetaApi("The surface for customizing headers is not stable yet and may change in the future.")
145143
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() {
146144
return MetricsServiceV2StubSettings.defaultApiClientHeaderProviderBuilder();
147145
}

google-cloud-logging/src/main/java/com/google/cloud/logging/v2/package-info.java

+1-1
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-logging/src/main/java/com/google/cloud/logging/v2/stub/ConfigServiceV2Stub.java

+1-1
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-logging/src/main/java/com/google/cloud/logging/v2/stub/ConfigServiceV2StubSettings.java

+1-2
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.
@@ -731,7 +731,6 @@ public static TransportChannelProvider defaultTransportChannelProvider() {
731731
return defaultGrpcTransportProviderBuilder().build();
732732
}
733733

734-
@BetaApi("The surface for customizing headers is not stable yet and may change in the future.")
735734
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() {
736735
return ApiClientHeaderProvider.newBuilder()
737736
.setGeneratedLibToken(

google-cloud-logging/src/main/java/com/google/cloud/logging/v2/stub/GrpcConfigServiceV2CallableFactory.java

+1-1
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-logging/src/main/java/com/google/cloud/logging/v2/stub/GrpcConfigServiceV2Stub.java

+1-1
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-logging/src/main/java/com/google/cloud/logging/v2/stub/GrpcLoggingServiceV2CallableFactory.java

+1-1
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-logging/src/main/java/com/google/cloud/logging/v2/stub/GrpcLoggingServiceV2Stub.java

+1-1
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-logging/src/main/java/com/google/cloud/logging/v2/stub/GrpcMetricsServiceV2CallableFactory.java

+1-1
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-logging/src/main/java/com/google/cloud/logging/v2/stub/GrpcMetricsServiceV2Stub.java

+1-1
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-logging/src/main/java/com/google/cloud/logging/v2/stub/LoggingServiceV2Stub.java

+1-1
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-logging/src/main/java/com/google/cloud/logging/v2/stub/LoggingServiceV2StubSettings.java

+1-3
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 com.google.api.MonitoredResourceDescriptor;
2424
import com.google.api.core.ApiFunction;
2525
import com.google.api.core.ApiFuture;
26-
import com.google.api.core.BetaApi;
2726
import com.google.api.gax.batching.BatchingSettings;
2827
import com.google.api.gax.batching.FlowControlSettings;
2928
import com.google.api.gax.batching.FlowController;
@@ -490,7 +489,6 @@ public static TransportChannelProvider defaultTransportChannelProvider() {
490489
return defaultGrpcTransportProviderBuilder().build();
491490
}
492491

493-
@BetaApi("The surface for customizing headers is not stable yet and may change in the future.")
494492
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() {
495493
return ApiClientHeaderProvider.newBuilder()
496494
.setGeneratedLibToken(

google-cloud-logging/src/main/java/com/google/cloud/logging/v2/stub/MetricsServiceV2Stub.java

+1-1
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-logging/src/main/java/com/google/cloud/logging/v2/stub/MetricsServiceV2StubSettings.java

+1-3
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;
@@ -258,7 +257,6 @@ public static TransportChannelProvider defaultTransportChannelProvider() {
258257
return defaultGrpcTransportProviderBuilder().build();
259258
}
260259

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

google-cloud-logging/src/test/java/com/google/cloud/logging/v2/ConfigClientTest.java

+1-1
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-logging/src/test/java/com/google/cloud/logging/v2/LoggingClientTest.java

+1-1
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-logging/src/test/java/com/google/cloud/logging/v2/MetricsClientTest.java

+1-1
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-logging/src/test/java/com/google/cloud/logging/v2/MockConfigServiceV2.java

+1-1
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-logging/src/test/java/com/google/cloud/logging/v2/MockConfigServiceV2Impl.java

+1-1
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-logging/src/test/java/com/google/cloud/logging/v2/MockLoggingServiceV2.java

+1-1
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-logging/src/test/java/com/google/cloud/logging/v2/MockLoggingServiceV2Impl.java

+1-1
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-logging/src/test/java/com/google/cloud/logging/v2/MockMetricsServiceV2.java

+1-1
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-logging/src/test/java/com/google/cloud/logging/v2/MockMetricsServiceV2Impl.java

+1-1
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.

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/BillingAccountLocationName.java

+1-1
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.

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/BillingAccountName.java

+1-1
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.

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/CmekSettingsName.java

+1-1
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.

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/FolderLocationName.java

+1-1
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.

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/FolderName.java

+1-1
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.

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/LinkName.java

+1-1
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.

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/LocationName.java

+1-1
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.

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/LogBucketName.java

+1-1
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.

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/LogExclusionName.java

+1-1
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.

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/LogMetricName.java

+1-1
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.

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/LogName.java

+1-1
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.

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/LogSinkName.java

+1-1
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.

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/LogViewName.java

+1-1
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.

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/OrganizationLocationName.java

+1-1
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.

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/OrganizationName.java

+1-1
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.

proto-google-cloud-logging-v2/src/main/java/com/google/logging/v2/ProjectName.java

+1-1
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)