diff --git a/generator/internal/discovery_type_vertex.cc b/generator/internal/discovery_type_vertex.cc index 9568d6d662138..00f7062bf3e76 100644 --- a/generator/internal/discovery_type_vertex.cc +++ b/generator/internal/discovery_type_vertex.cc @@ -17,6 +17,8 @@ #include "google/cloud/internal/algorithm.h" #include "google/cloud/internal/make_status.h" #include "google/cloud/log.h" +#include "absl/strings/ascii.h" +#include "absl/strings/match.h" #include "absl/strings/str_format.h" #include "absl/strings/str_join.h" #include "absl/strings/str_replace.h" @@ -43,6 +45,22 @@ std::optional CheckForScalarType(nlohmann::json const& j) { return std::nullopt; } +bool IsStringOrBytes(nlohmann::json const& field_json) { + std::string const type = field_json.value("type", ""); + if (type == "string" || type == "bytes") return true; + if (type == "array" && field_json.contains("items")) { + std::string const item_type = field_json["items"].value("type", ""); + if (item_type == "string" || item_type == "bytes") return true; + } + return false; +} + +bool ContainsKeyWord(std::string_view s) { + auto const tokens = absl::StrSplit(s, '_'); + return std::any_of(tokens.begin(), tokens.end(), + [](absl::string_view token) { return token == "key"; }); +} + } // namespace DiscoveryTypeVertex::DiscoveryTypeVertex( @@ -495,6 +513,10 @@ std::string DiscoveryTypeVertex::FormatFieldOptions( absl::StrCat("\"", field_name, "\"")); } + if (IsStringOrBytes(field_json) && ContainsKeyWord(field_name)) { + field_options.emplace_back("debug_redact", "true"); + } + // Discovery doc defined field names that are not always in strict // camelCase, leading to translation issue between json and protobuf. Thus, // the emitted proto fields need to have their name as it appears in the @@ -512,6 +534,8 @@ std::string DiscoveryTypeVertex::FormatFieldOptions( std::pair const& p) { if (p.first == "json_name") { *s += absl::StrFormat("%s=\"%s\"", p.first, p.second); + } else if (p.first == "debug_redact") { + *s += absl::StrFormat("%s = %s", p.first, p.second); } else { *s += absl::StrFormat("(%s) = %s", p.first, p.second); } diff --git a/generator/internal/discovery_type_vertex_test.cc b/generator/internal/discovery_type_vertex_test.cc index eafbc5ade81bc..1a03d3ad7f3d1 100644 --- a/generator/internal/discovery_type_vertex_test.cc +++ b/generator/internal/discovery_type_vertex_test.cc @@ -182,6 +182,111 @@ TEST(DiscoveryTypeVertexTest, FormatFieldOptionsRequiredIsResource) { "REQUIRED,json_name=\"__json_request_body\"]")); } +TEST(DiscoveryTypeVertexTest, FormatFieldOptionsDebugRedactString) { + auto constexpr kFieldJson = R"""( +{ + "type": "string" +} +)"""; + auto json = nlohmann::json::parse(kFieldJson, nullptr, false); + ASSERT_TRUE(json.is_object()); + EXPECT_THAT( + DiscoveryTypeVertex::FormatFieldOptions("raw_key", "rawKey", json), + Eq(" [debug_redact = true,json_name=\"rawKey\"]")); +} + +TEST(DiscoveryTypeVertexTest, FormatFieldOptionsDebugRedactBytes) { + auto constexpr kFieldJson = R"""( +{ + "type": "bytes" +} +)"""; + auto json = nlohmann::json::parse(kFieldJson, nullptr, false); + ASSERT_TRUE(json.is_object()); + EXPECT_THAT( + DiscoveryTypeVertex::FormatFieldOptions("raw_key", "rawKey", json), + Eq(" [debug_redact = true,json_name=\"rawKey\"]")); +} + +TEST(DiscoveryTypeVertexTest, FormatFieldOptionsDebugRedactArrayString) { + auto constexpr kFieldJson = R"""( +{ + "type": "array", + "items": { + "type": "string" + } +} +)"""; + auto json = nlohmann::json::parse(kFieldJson, nullptr, false); + ASSERT_TRUE(json.is_object()); + EXPECT_THAT( + DiscoveryTypeVertex::FormatFieldOptions("raw_key", "rawKey", json), + Eq(" [debug_redact = true,json_name=\"rawKey\"]")); +} + +TEST(DiscoveryTypeVertexTest, FormatFieldOptionsDebugRedactArrayBytes) { + auto constexpr kFieldJson = R"""( +{ + "type": "array", + "items": { + "type": "bytes" + } +} +)"""; + auto json = nlohmann::json::parse(kFieldJson, nullptr, false); + ASSERT_TRUE(json.is_object()); + EXPECT_THAT( + DiscoveryTypeVertex::FormatFieldOptions("raw_key", "rawKey", json), + Eq(" [debug_redact = true,json_name=\"rawKey\"]")); +} + +TEST(DiscoveryTypeVertexTest, FormatFieldOptionsDebugRedactNonMatches) { + auto constexpr kFieldJson = R"""( +{ + "type": "string" +} +)"""; + auto json = nlohmann::json::parse(kFieldJson, nullptr, false); + ASSERT_TRUE(json.is_object()); + EXPECT_THAT(DiscoveryTypeVertex::FormatFieldOptions("monkey", "monkey", json), + Eq(" [json_name=\"monkey\"]")); + EXPECT_THAT( + DiscoveryTypeVertex::FormatFieldOptions("keyboard", "keyboard", json), + Eq(" [json_name=\"keyboard\"]")); + EXPECT_THAT(DiscoveryTypeVertex::FormatFieldOptions("hockey", "hockey", json), + Eq(" [json_name=\"hockey\"]")); + EXPECT_THAT(DiscoveryTypeVertex::FormatFieldOptions("keypad", "keypad", json), + Eq(" [json_name=\"keypad\"]")); +} + +TEST(DiscoveryTypeVertexTest, + FormatFieldOptionsDebugRedactNonStringNotRedacted) { + auto constexpr kFieldJson = R"""( +{ + "type": "integer" +} +)"""; + auto json = nlohmann::json::parse(kFieldJson, nullptr, false); + ASSERT_TRUE(json.is_object()); + EXPECT_THAT(DiscoveryTypeVertex::FormatFieldOptions("key_id", "keyId", json), + Eq(" [json_name=\"keyId\"]")); +} + +TEST(DiscoveryTypeVertexTest, FormatFieldOptionsDebugRedactRequired) { + auto constexpr kFieldJson = R"""( +{ + "type": "string", + "required": true +} +)"""; + auto json = nlohmann::json::parse(kFieldJson, nullptr, false); + ASSERT_TRUE(json.is_object()); + EXPECT_THAT( + DiscoveryTypeVertex::FormatFieldOptions("raw_key", "rawKey", json), + Eq(" [(google.api.field_behavior) = " + "REQUIRED,debug_redact = true,json_name=\"rawKey\"]")); +} + struct DetermineTypesSuccess { std::string name; std::string json; @@ -1312,6 +1417,47 @@ message TestSchema { "optional string to: optional double"))); } +TEST_F(DiscoveryTypeVertexDescriptorTest, JsonToProtobufCustomerEncryptionKey) { + auto constexpr kSchemaJson = R"""( +{ + "id": "CustomerEncryptionKey", + "properties": { + "kmsKeyName": { + "type": "string" + }, + "rawKey": { + "type": "string" + }, + "rsaEncryptedKey": { + "type": "string" + }, + "sha256": { + "type": "string" + } + } +} +)"""; + + auto constexpr kExpectedProto = R"""(message CustomerEncryptionKey { + optional string kms_key_name = 1 [debug_redact = true,json_name="kmsKeyName"]; + + optional string raw_key = 2 [debug_redact = true,json_name="rawKey"]; + + optional string rsa_encrypted_key = 3 [debug_redact = true,json_name="rsaEncryptedKey"]; + + optional string sha256 = 4 [json_name="sha256"]; +} +)"""; + + auto json = nlohmann::json::parse(kSchemaJson, nullptr, false); + ASSERT_TRUE(json.is_object()); + DiscoveryTypeVertex t("CustomerEncryptionKey", "test.package", json, &pool()); + std::map types; + auto result = t.JsonToProtobufMessage(types, "test.package"); + ASSERT_THAT(result, ::google::cloud::testing_util::IsOk()); + EXPECT_THAT(*result, Eq(kExpectedProto)); +} + } // namespace } // namespace generator_internal } // namespace cloud diff --git a/google/cloud/compute/backend_buckets/v1/backend_buckets_client.h b/google/cloud/compute/backend_buckets/v1/backend_buckets_client.h index caf09c9653010..89abe9eef7305 100644 --- a/google/cloud/compute/backend_buckets/v1/backend_buckets_client.h +++ b/google/cloud/compute/backend_buckets/v1/backend_buckets_client.h @@ -565,7 +565,7 @@ class BackendBucketsClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_buckets.v1.GetBackendBucketRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L435} + /// [google.cloud.cpp.compute.backend_buckets.v1.GetBackendBucketRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L438} /// [google.cloud.cpp.compute.v1.BackendBucket]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_012.proto#L28} /// // clang-format on @@ -597,7 +597,7 @@ class BackendBucketsClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_buckets.v1.GetBackendBucketRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L435} + /// [google.cloud.cpp.compute.backend_buckets.v1.GetBackendBucketRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L438} /// [google.cloud.cpp.compute.v1.BackendBucket]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_012.proto#L28} /// // clang-format on @@ -627,7 +627,7 @@ class BackendBucketsClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_buckets.v1.GetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L446} + /// [google.cloud.cpp.compute.backend_buckets.v1.GetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L449} /// [google.cloud.cpp.compute.v1.Policy]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_009.proto#L317} /// // clang-format on @@ -660,7 +660,7 @@ class BackendBucketsClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_buckets.v1.GetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L446} + /// [google.cloud.cpp.compute.backend_buckets.v1.GetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L449} /// [google.cloud.cpp.compute.v1.Policy]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_009.proto#L317} /// // clang-format on @@ -697,7 +697,7 @@ class BackendBucketsClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_buckets.v1.InsertBackendBucketRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L461} + /// [google.cloud.cpp.compute.backend_buckets.v1.InsertBackendBucketRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L464} /// // clang-format on future> @@ -755,7 +755,7 @@ class BackendBucketsClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_buckets.v1.InsertBackendBucketRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L461} + /// [google.cloud.cpp.compute.backend_buckets.v1.InsertBackendBucketRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L464} /// // clang-format on future> @@ -823,7 +823,7 @@ class BackendBucketsClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_buckets.v1.ListBackendBucketsRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L490} + /// [google.cloud.cpp.compute.backend_buckets.v1.ListBackendBucketsRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L493} /// [google.cloud.cpp.compute.v1.BackendBucket]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_012.proto#L28} /// // clang-format on @@ -864,7 +864,7 @@ class BackendBucketsClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_buckets.v1.ListBackendBucketsRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L490} + /// [google.cloud.cpp.compute.backend_buckets.v1.ListBackendBucketsRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L493} /// [google.cloud.cpp.compute.v1.BackendBucket]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_012.proto#L28} /// // clang-format on @@ -901,7 +901,7 @@ class BackendBucketsClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_buckets.v1.ListUsableRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L591} + /// [google.cloud.cpp.compute.backend_buckets.v1.ListUsableRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L594} /// [google.cloud.cpp.compute.v1.BackendBucket]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_012.proto#L28} /// // clang-format on @@ -941,7 +941,7 @@ class BackendBucketsClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_buckets.v1.ListUsableRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L591} + /// [google.cloud.cpp.compute.backend_buckets.v1.ListUsableRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L594} /// [google.cloud.cpp.compute.v1.BackendBucket]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_012.proto#L28} /// // clang-format on @@ -981,7 +981,7 @@ class BackendBucketsClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_buckets.v1.PatchBackendBucketRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L692} + /// [google.cloud.cpp.compute.backend_buckets.v1.PatchBackendBucketRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L695} /// // clang-format on future> @@ -1042,7 +1042,7 @@ class BackendBucketsClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_buckets.v1.PatchBackendBucketRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L692} + /// [google.cloud.cpp.compute.backend_buckets.v1.PatchBackendBucketRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L695} /// // clang-format on future> @@ -1110,7 +1110,7 @@ class BackendBucketsClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_buckets.v1.SetEdgeSecurityPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L725} + /// [google.cloud.cpp.compute.backend_buckets.v1.SetEdgeSecurityPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L728} /// // clang-format on future> @@ -1168,7 +1168,7 @@ class BackendBucketsClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_buckets.v1.SetEdgeSecurityPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L725} + /// [google.cloud.cpp.compute.backend_buckets.v1.SetEdgeSecurityPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L728} /// // clang-format on future> @@ -1229,7 +1229,7 @@ class BackendBucketsClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_buckets.v1.SetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L760} + /// [google.cloud.cpp.compute.backend_buckets.v1.SetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L763} /// [google.cloud.cpp.compute.v1.Policy]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_009.proto#L317} /// // clang-format on @@ -1264,7 +1264,7 @@ class BackendBucketsClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_buckets.v1.SetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L760} + /// [google.cloud.cpp.compute.backend_buckets.v1.SetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L763} /// [google.cloud.cpp.compute.v1.Policy]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_009.proto#L317} /// // clang-format on @@ -1294,7 +1294,7 @@ class BackendBucketsClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_buckets.v1.TestIamPermissionsRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L776} + /// [google.cloud.cpp.compute.backend_buckets.v1.TestIamPermissionsRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L779} /// [google.cloud.cpp.compute.v1.TestPermissionsResponse]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_171.proto#L30} /// // clang-format on @@ -1329,7 +1329,7 @@ class BackendBucketsClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_buckets.v1.TestIamPermissionsRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L776} + /// [google.cloud.cpp.compute.backend_buckets.v1.TestIamPermissionsRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L779} /// [google.cloud.cpp.compute.v1.TestPermissionsResponse]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_171.proto#L30} /// // clang-format on @@ -1367,7 +1367,7 @@ class BackendBucketsClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_buckets.v1.UpdateBackendBucketRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L791} + /// [google.cloud.cpp.compute.backend_buckets.v1.UpdateBackendBucketRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L794} /// // clang-format on future> @@ -1426,7 +1426,7 @@ class BackendBucketsClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_buckets.v1.UpdateBackendBucketRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L791} + /// [google.cloud.cpp.compute.backend_buckets.v1.UpdateBackendBucketRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_buckets/v1/backend_buckets.proto#L794} /// // clang-format on future> diff --git a/google/cloud/compute/backend_services/v1/backend_services_client.h b/google/cloud/compute/backend_services/v1/backend_services_client.h index 04adf40031af7..8917f04203f31 100644 --- a/google/cloud/compute/backend_services/v1/backend_services_client.h +++ b/google/cloud/compute/backend_services/v1/backend_services_client.h @@ -567,8 +567,8 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.GetBackendServiceRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L486} - /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L282} + /// [google.cloud.cpp.compute.backend_services.v1.GetBackendServiceRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L489} + /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L284} /// // clang-format on StatusOr GetBackendService( @@ -599,8 +599,8 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.GetBackendServiceRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L486} - /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L282} + /// [google.cloud.cpp.compute.backend_services.v1.GetBackendServiceRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L489} + /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L284} /// // clang-format on StatusOr GetBackendService( @@ -626,7 +626,7 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.GetEffectiveSecurityPoliciesRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L497} + /// [google.cloud.cpp.compute.backend_services.v1.GetEffectiveSecurityPoliciesRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L500} /// // clang-format on Status GetEffectiveSecurityPolicies(std::string const& project, @@ -655,7 +655,7 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.GetEffectiveSecurityPoliciesRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L497} + /// [google.cloud.cpp.compute.backend_services.v1.GetEffectiveSecurityPoliciesRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L500} /// // clang-format on Status GetEffectiveSecurityPolicies( @@ -691,8 +691,8 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.GetHealthRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L508} - /// [google.cloud.cpp.compute.v1.BackendServiceGroupHealth]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L1272} + /// [google.cloud.cpp.compute.backend_services.v1.GetHealthRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L511} + /// [google.cloud.cpp.compute.v1.BackendServiceGroupHealth]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L1275} /// // clang-format on StatusOr @@ -732,8 +732,8 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.GetHealthRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L508} - /// [google.cloud.cpp.compute.v1.BackendServiceGroupHealth]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L1272} + /// [google.cloud.cpp.compute.backend_services.v1.GetHealthRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L511} + /// [google.cloud.cpp.compute.v1.BackendServiceGroupHealth]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L1275} /// // clang-format on StatusOr @@ -763,7 +763,7 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.GetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L522} + /// [google.cloud.cpp.compute.backend_services.v1.GetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L525} /// [google.cloud.cpp.compute.v1.Policy]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_009.proto#L317} /// // clang-format on @@ -796,7 +796,7 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.GetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L522} + /// [google.cloud.cpp.compute.backend_services.v1.GetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L525} /// [google.cloud.cpp.compute.v1.Policy]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_009.proto#L317} /// // clang-format on @@ -834,7 +834,7 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.InsertBackendServiceRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L537} + /// [google.cloud.cpp.compute.backend_services.v1.InsertBackendServiceRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L540} /// // clang-format on future> @@ -893,7 +893,7 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.InsertBackendServiceRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L537} + /// [google.cloud.cpp.compute.backend_services.v1.InsertBackendServiceRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L540} /// // clang-format on future> @@ -961,8 +961,8 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.ListBackendServicesRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L566} - /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L282} + /// [google.cloud.cpp.compute.backend_services.v1.ListBackendServicesRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L569} + /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L284} /// // clang-format on StreamRange @@ -1002,8 +1002,8 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.ListBackendServicesRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L566} - /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L282} + /// [google.cloud.cpp.compute.backend_services.v1.ListBackendServicesRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L569} + /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L284} /// // clang-format on StreamRange @@ -1042,8 +1042,8 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.ListUsableRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L667} - /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L282} + /// [google.cloud.cpp.compute.backend_services.v1.ListUsableRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L670} + /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L284} /// // clang-format on StreamRange ListUsable( @@ -1085,8 +1085,8 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.ListUsableRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L667} - /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L282} + /// [google.cloud.cpp.compute.backend_services.v1.ListUsableRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L670} + /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L284} /// // clang-format on StreamRange ListUsable( @@ -1126,7 +1126,7 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.PatchBackendServiceRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L768} + /// [google.cloud.cpp.compute.backend_services.v1.PatchBackendServiceRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L771} /// // clang-format on future> @@ -1189,7 +1189,7 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.PatchBackendServiceRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L768} + /// [google.cloud.cpp.compute.backend_services.v1.PatchBackendServiceRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L771} /// // clang-format on future> @@ -1257,7 +1257,7 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.SetEdgeSecurityPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L801} + /// [google.cloud.cpp.compute.backend_services.v1.SetEdgeSecurityPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L804} /// // clang-format on future> @@ -1316,7 +1316,7 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.SetEdgeSecurityPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L801} + /// [google.cloud.cpp.compute.backend_services.v1.SetEdgeSecurityPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L804} /// // clang-format on future> @@ -1377,7 +1377,7 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.SetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L836} + /// [google.cloud.cpp.compute.backend_services.v1.SetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L839} /// [google.cloud.cpp.compute.v1.Policy]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_009.proto#L317} /// // clang-format on @@ -1412,7 +1412,7 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.SetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L836} + /// [google.cloud.cpp.compute.backend_services.v1.SetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L839} /// [google.cloud.cpp.compute.v1.Policy]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_009.proto#L317} /// // clang-format on @@ -1452,7 +1452,7 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.SetSecurityPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L852} + /// [google.cloud.cpp.compute.backend_services.v1.SetSecurityPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L855} /// // clang-format on future> @@ -1513,7 +1513,7 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.SetSecurityPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L852} + /// [google.cloud.cpp.compute.backend_services.v1.SetSecurityPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L855} /// // clang-format on future> @@ -1572,7 +1572,7 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.TestIamPermissionsRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L887} + /// [google.cloud.cpp.compute.backend_services.v1.TestIamPermissionsRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L890} /// [google.cloud.cpp.compute.v1.TestPermissionsResponse]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_171.proto#L30} /// // clang-format on @@ -1607,7 +1607,7 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.TestIamPermissionsRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L887} + /// [google.cloud.cpp.compute.backend_services.v1.TestIamPermissionsRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L890} /// [google.cloud.cpp.compute.v1.TestPermissionsResponse]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_171.proto#L30} /// // clang-format on @@ -1646,7 +1646,7 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.UpdateBackendServiceRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L902} + /// [google.cloud.cpp.compute.backend_services.v1.UpdateBackendServiceRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L905} /// // clang-format on future> @@ -1707,7 +1707,7 @@ class BackendServicesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.backend_services.v1.UpdateBackendServiceRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L902} + /// [google.cloud.cpp.compute.backend_services.v1.UpdateBackendServiceRequest]: @cloud_cpp_reference_link{google/cloud/compute/backend_services/v1/backend_services.proto#L905} /// // clang-format on future> diff --git a/google/cloud/compute/disks/v1/disks_client.h b/google/cloud/compute/disks/v1/disks_client.h index 646682685d0d4..0491f22905a82 100644 --- a/google/cloud/compute/disks/v1/disks_client.h +++ b/google/cloud/compute/disks/v1/disks_client.h @@ -251,7 +251,7 @@ class DisksClient { /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status /// [google.cloud.cpp.compute.disks.v1.AggregatedListDisksRequest]: @cloud_cpp_reference_link{google/cloud/compute/disks/v1/disks.proto#L358} - /// [google.cloud.cpp.compute.v1.DisksScopedList]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_020.proto#L210} + /// [google.cloud.cpp.compute.v1.DisksScopedList]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_020.proto#L211} /// // clang-format on StreamRange< @@ -295,7 +295,7 @@ class DisksClient { /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status /// [google.cloud.cpp.compute.disks.v1.AggregatedListDisksRequest]: @cloud_cpp_reference_link{google/cloud/compute/disks/v1/disks.proto#L358} - /// [google.cloud.cpp.compute.v1.DisksScopedList]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_020.proto#L210} + /// [google.cloud.cpp.compute.v1.DisksScopedList]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_020.proto#L211} /// // clang-format on StreamRange< diff --git a/google/cloud/compute/instances/v1/instances_client.h b/google/cloud/compute/instances/v1/instances_client.h index 61c2bf1301dd5..9c56353051583 100644 --- a/google/cloud/compute/instances/v1/instances_client.h +++ b/google/cloud/compute/instances/v1/instances_client.h @@ -510,7 +510,7 @@ class InstancesClient { /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status /// [google.cloud.cpp.compute.instances.v1.AggregatedListInstancesRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L871} - /// [google.cloud.cpp.compute.v1.InstancesScopedList]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L899} + /// [google.cloud.cpp.compute.v1.InstancesScopedList]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L900} /// // clang-format on StreamRange GetInstance( @@ -1382,8 +1382,8 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.GetInstanceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1290} - /// [google.cloud.cpp.compute.v1.Instance]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L99} + /// [google.cloud.cpp.compute.instances.v1.GetInstanceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1291} + /// [google.cloud.cpp.compute.v1.Instance]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L100} /// // clang-format on StatusOr GetInstance( @@ -1414,7 +1414,7 @@ class InstancesClient { /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status /// [google.cloud.cpp.compute.instances.v1.GetEffectiveFirewallsRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1234} - /// [google.cloud.cpp.compute.v1.InstancesGetEffectiveFirewallsResponse]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L823} + /// [google.cloud.cpp.compute.v1.InstancesGetEffectiveFirewallsResponse]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L824} /// // clang-format on StatusOr< @@ -1449,7 +1449,7 @@ class InstancesClient { /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status /// [google.cloud.cpp.compute.instances.v1.GetEffectiveFirewallsRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1234} - /// [google.cloud.cpp.compute.v1.InstancesGetEffectiveFirewallsResponse]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L823} + /// [google.cloud.cpp.compute.v1.InstancesGetEffectiveFirewallsResponse]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L824} /// // clang-format on StatusOr< @@ -1542,7 +1542,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.GetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1272} + /// [google.cloud.cpp.compute.instances.v1.GetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1273} /// [google.cloud.cpp.compute.v1.Policy]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_009.proto#L317} /// // clang-format on @@ -1575,7 +1575,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.GetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1272} + /// [google.cloud.cpp.compute.instances.v1.GetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1273} /// [google.cloud.cpp.compute.v1.Policy]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_009.proto#L317} /// // clang-format on @@ -1605,8 +1605,8 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.GetScreenshotRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1304} - /// [google.cloud.cpp.compute.v1.Screenshot]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L1277} + /// [google.cloud.cpp.compute.instances.v1.GetScreenshotRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1305} + /// [google.cloud.cpp.compute.v1.Screenshot]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L1278} /// // clang-format on StatusOr GetScreenshot( @@ -1637,8 +1637,8 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.GetScreenshotRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1304} - /// [google.cloud.cpp.compute.v1.Screenshot]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L1277} + /// [google.cloud.cpp.compute.instances.v1.GetScreenshotRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1305} + /// [google.cloud.cpp.compute.v1.Screenshot]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L1278} /// // clang-format on StatusOr GetScreenshot( @@ -1667,8 +1667,8 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.GetSerialPortOutputRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1318} - /// [google.cloud.cpp.compute.v1.SerialPortOutput]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L1287} + /// [google.cloud.cpp.compute.instances.v1.GetSerialPortOutputRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1319} + /// [google.cloud.cpp.compute.v1.SerialPortOutput]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L1288} /// // clang-format on StatusOr @@ -1699,8 +1699,8 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.GetSerialPortOutputRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1318} - /// [google.cloud.cpp.compute.v1.SerialPortOutput]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L1287} + /// [google.cloud.cpp.compute.instances.v1.GetSerialPortOutputRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1319} + /// [google.cloud.cpp.compute.v1.SerialPortOutput]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L1288} /// // clang-format on StatusOr @@ -1729,8 +1729,8 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.GetShieldedInstanceIdentityRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1354} - /// [google.cloud.cpp.compute.v1.ShieldedInstanceIdentity]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L1314} + /// [google.cloud.cpp.compute.instances.v1.GetShieldedInstanceIdentityRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1355} + /// [google.cloud.cpp.compute.v1.ShieldedInstanceIdentity]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L1315} /// // clang-format on StatusOr @@ -1762,8 +1762,8 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.GetShieldedInstanceIdentityRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1354} - /// [google.cloud.cpp.compute.v1.ShieldedInstanceIdentity]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L1314} + /// [google.cloud.cpp.compute.instances.v1.GetShieldedInstanceIdentityRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1355} + /// [google.cloud.cpp.compute.v1.ShieldedInstanceIdentity]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L1315} /// // clang-format on StatusOr @@ -1801,7 +1801,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.InsertInstanceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1368} + /// [google.cloud.cpp.compute.instances.v1.InsertInstanceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1369} /// // clang-format on future> InsertInstance( @@ -1857,7 +1857,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.InsertInstanceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1368} + /// [google.cloud.cpp.compute.instances.v1.InsertInstanceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1369} /// // clang-format on future> InsertInstance( @@ -1925,8 +1925,8 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.ListInstancesRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1429} - /// [google.cloud.cpp.compute.v1.Instance]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L99} + /// [google.cloud.cpp.compute.instances.v1.ListInstancesRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1430} + /// [google.cloud.cpp.compute.v1.Instance]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L100} /// // clang-format on StreamRange ListInstances( @@ -1966,8 +1966,8 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.ListInstancesRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1429} - /// [google.cloud.cpp.compute.v1.Instance]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L99} + /// [google.cloud.cpp.compute.instances.v1.ListInstancesRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1430} + /// [google.cloud.cpp.compute.v1.Instance]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L100} /// // clang-format on StreamRange ListInstances( @@ -2009,8 +2009,8 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.ListReferrersRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1533} - /// [google.cloud.cpp.compute.v1.Reference]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L1081} + /// [google.cloud.cpp.compute.instances.v1.ListReferrersRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1534} + /// [google.cloud.cpp.compute.v1.Reference]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L1082} /// // clang-format on StreamRange ListReferrers( @@ -2054,8 +2054,8 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.ListReferrersRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1533} - /// [google.cloud.cpp.compute.v1.Reference]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L1081} + /// [google.cloud.cpp.compute.instances.v1.ListReferrersRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1534} + /// [google.cloud.cpp.compute.v1.Reference]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_029.proto#L1082} /// // clang-format on StreamRange ListReferrers( @@ -2090,7 +2090,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.PerformMaintenanceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1642} + /// [google.cloud.cpp.compute.instances.v1.PerformMaintenanceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1643} /// // clang-format on future> @@ -2143,7 +2143,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.PerformMaintenanceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1642} + /// [google.cloud.cpp.compute.instances.v1.PerformMaintenanceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1643} /// // clang-format on future> @@ -2211,7 +2211,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.RemoveResourcePoliciesRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1678} + /// [google.cloud.cpp.compute.instances.v1.RemoveResourcePoliciesRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1679} /// // clang-format on future> @@ -2273,7 +2273,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.RemoveResourcePoliciesRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1678} + /// [google.cloud.cpp.compute.instances.v1.RemoveResourcePoliciesRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1679} /// // clang-format on future> @@ -2341,7 +2341,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.ReportHostAsFaultyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1719} + /// [google.cloud.cpp.compute.instances.v1.ReportHostAsFaultyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1720} /// // clang-format on future> @@ -2401,7 +2401,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.ReportHostAsFaultyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1719} + /// [google.cloud.cpp.compute.instances.v1.ReportHostAsFaultyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1720} /// // clang-format on future> @@ -2470,7 +2470,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.ResetRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1760} + /// [google.cloud.cpp.compute.instances.v1.ResetRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1761} /// // clang-format on future> Reset( @@ -2525,7 +2525,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.ResetRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1760} + /// [google.cloud.cpp.compute.instances.v1.ResetRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1761} /// // clang-format on future> Reset( @@ -2590,7 +2590,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.ResumeRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1796} + /// [google.cloud.cpp.compute.instances.v1.ResumeRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1797} /// // clang-format on future> Resume( @@ -2644,7 +2644,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.ResumeRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1796} + /// [google.cloud.cpp.compute.instances.v1.ResumeRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1797} /// // clang-format on future> Resume( @@ -2699,7 +2699,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SendDiagnosticInterruptRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1832} + /// [google.cloud.cpp.compute.instances.v1.SendDiagnosticInterruptRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1833} /// // clang-format on Status SendDiagnosticInterrupt(std::string const& project, @@ -2729,7 +2729,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SendDiagnosticInterruptRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1832} + /// [google.cloud.cpp.compute.instances.v1.SendDiagnosticInterruptRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1833} /// // clang-format on Status SendDiagnosticInterrupt( @@ -2765,7 +2765,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetDeletionProtectionRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1846} + /// [google.cloud.cpp.compute.instances.v1.SetDeletionProtectionRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1847} /// // clang-format on future> @@ -2818,7 +2818,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetDeletionProtectionRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1846} + /// [google.cloud.cpp.compute.instances.v1.SetDeletionProtectionRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1847} /// // clang-format on future> @@ -2888,7 +2888,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetDiskAutoDeleteRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1885} + /// [google.cloud.cpp.compute.instances.v1.SetDiskAutoDeleteRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1886} /// // clang-format on future> @@ -2943,7 +2943,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetDiskAutoDeleteRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1885} + /// [google.cloud.cpp.compute.instances.v1.SetDiskAutoDeleteRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1886} /// // clang-format on future> @@ -3004,7 +3004,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1930} + /// [google.cloud.cpp.compute.instances.v1.SetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1931} /// [google.cloud.cpp.compute.v1.Policy]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_009.proto#L317} /// // clang-format on @@ -3040,7 +3040,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1930} + /// [google.cloud.cpp.compute.instances.v1.SetIamPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1931} /// [google.cloud.cpp.compute.v1.Policy]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_009.proto#L317} /// // clang-format on @@ -3079,7 +3079,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetLabelsRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1948} + /// [google.cloud.cpp.compute.instances.v1.SetLabelsRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1949} /// // clang-format on future> SetLabels( @@ -3139,7 +3139,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetLabelsRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1948} + /// [google.cloud.cpp.compute.instances.v1.SetLabelsRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1949} /// // clang-format on future> SetLabels( @@ -3207,7 +3207,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetMachineResourcesRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1989} + /// [google.cloud.cpp.compute.instances.v1.SetMachineResourcesRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1990} /// // clang-format on future> @@ -3269,7 +3269,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetMachineResourcesRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1989} + /// [google.cloud.cpp.compute.instances.v1.SetMachineResourcesRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L1990} /// // clang-format on future> @@ -3338,7 +3338,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetMachineTypeRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2030} + /// [google.cloud.cpp.compute.instances.v1.SetMachineTypeRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2031} /// // clang-format on future> SetMachineType( @@ -3398,7 +3398,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetMachineTypeRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2030} + /// [google.cloud.cpp.compute.instances.v1.SetMachineTypeRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2031} /// // clang-format on future> SetMachineType( @@ -3466,7 +3466,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetMetadataRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2071} + /// [google.cloud.cpp.compute.instances.v1.SetMetadataRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2072} /// // clang-format on future> SetMetadata( @@ -3524,7 +3524,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetMetadataRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2071} + /// [google.cloud.cpp.compute.instances.v1.SetMetadataRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2072} /// // clang-format on future> SetMetadata( @@ -3594,7 +3594,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetMinCpuPlatformRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2111} + /// [google.cloud.cpp.compute.instances.v1.SetMinCpuPlatformRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2112} /// // clang-format on future> @@ -3657,7 +3657,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetMinCpuPlatformRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2111} + /// [google.cloud.cpp.compute.instances.v1.SetMinCpuPlatformRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2112} /// // clang-format on future> @@ -3724,7 +3724,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetNameRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2152} + /// [google.cloud.cpp.compute.instances.v1.SetNameRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2153} /// // clang-format on future> SetName( @@ -3783,7 +3783,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetNameRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2152} + /// [google.cloud.cpp.compute.instances.v1.SetNameRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2153} /// // clang-format on future> SetName( @@ -3853,7 +3853,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetSchedulingRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2193} + /// [google.cloud.cpp.compute.instances.v1.SetSchedulingRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2194} /// // clang-format on future> SetScheduling( @@ -3915,7 +3915,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetSchedulingRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2193} + /// [google.cloud.cpp.compute.instances.v1.SetSchedulingRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2194} /// // clang-format on future> SetScheduling( @@ -3985,7 +3985,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetSecurityPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2233} + /// [google.cloud.cpp.compute.instances.v1.SetSecurityPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2234} /// // clang-format on future> @@ -4047,7 +4047,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetSecurityPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2233} + /// [google.cloud.cpp.compute.instances.v1.SetSecurityPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2234} /// // clang-format on future> @@ -4116,7 +4116,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetServiceAccountRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2275} + /// [google.cloud.cpp.compute.instances.v1.SetServiceAccountRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2276} /// // clang-format on future> @@ -4178,7 +4178,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetServiceAccountRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2275} + /// [google.cloud.cpp.compute.instances.v1.SetServiceAccountRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2276} /// // clang-format on future> @@ -4248,7 +4248,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetShieldedInstanceIntegrityPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2316} + /// [google.cloud.cpp.compute.instances.v1.SetShieldedInstanceIntegrityPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2317} /// // clang-format on future> @@ -4312,7 +4312,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetShieldedInstanceIntegrityPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2316} + /// [google.cloud.cpp.compute.instances.v1.SetShieldedInstanceIntegrityPolicyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2317} /// // clang-format on future> @@ -4383,7 +4383,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetTagsRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2357} + /// [google.cloud.cpp.compute.instances.v1.SetTagsRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2358} /// // clang-format on future> SetTags( @@ -4441,7 +4441,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SetTagsRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2357} + /// [google.cloud.cpp.compute.instances.v1.SetTagsRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2358} /// // clang-format on future> SetTags( @@ -4506,7 +4506,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SimulateMaintenanceEventRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2397} + /// [google.cloud.cpp.compute.instances.v1.SimulateMaintenanceEventRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2398} /// // clang-format on future> @@ -4560,7 +4560,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SimulateMaintenanceEventRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2397} + /// [google.cloud.cpp.compute.instances.v1.SimulateMaintenanceEventRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2398} /// // clang-format on future> @@ -4629,7 +4629,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.StartRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2438} + /// [google.cloud.cpp.compute.instances.v1.StartRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2439} /// // clang-format on future> Start( @@ -4684,7 +4684,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.StartRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2438} + /// [google.cloud.cpp.compute.instances.v1.StartRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2439} /// // clang-format on future> Start( @@ -4751,7 +4751,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.StartWithEncryptionKeyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2474} + /// [google.cloud.cpp.compute.instances.v1.StartWithEncryptionKeyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2475} /// // clang-format on future> @@ -4815,7 +4815,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.StartWithEncryptionKeyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2474} + /// [google.cloud.cpp.compute.instances.v1.StartWithEncryptionKeyRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2475} /// // clang-format on future> @@ -4887,7 +4887,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.StopRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2515} + /// [google.cloud.cpp.compute.instances.v1.StopRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2516} /// // clang-format on future> Stop( @@ -4945,7 +4945,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.StopRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2515} + /// [google.cloud.cpp.compute.instances.v1.StopRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2516} /// // clang-format on future> Stop( @@ -5016,7 +5016,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SuspendRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2559} + /// [google.cloud.cpp.compute.instances.v1.SuspendRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2560} /// // clang-format on future> Suspend( @@ -5076,7 +5076,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.SuspendRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2559} + /// [google.cloud.cpp.compute.instances.v1.SuspendRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2560} /// // clang-format on future> Suspend( @@ -5134,7 +5134,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.TestIamPermissionsRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2600} + /// [google.cloud.cpp.compute.instances.v1.TestIamPermissionsRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2601} /// [google.cloud.cpp.compute.v1.TestPermissionsResponse]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_171.proto#L30} /// // clang-format on @@ -5170,7 +5170,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.TestIamPermissionsRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2600} + /// [google.cloud.cpp.compute.instances.v1.TestIamPermissionsRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2601} /// [google.cloud.cpp.compute.v1.TestPermissionsResponse]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_171.proto#L30} /// // clang-format on @@ -5211,7 +5211,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.UpdateInstanceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2702} + /// [google.cloud.cpp.compute.instances.v1.UpdateInstanceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2703} /// // clang-format on future> UpdateInstance( @@ -5271,7 +5271,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.UpdateInstanceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2702} + /// [google.cloud.cpp.compute.instances.v1.UpdateInstanceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2703} /// // clang-format on future> UpdateInstance( @@ -5342,7 +5342,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.UpdateAccessConfigRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2618} + /// [google.cloud.cpp.compute.instances.v1.UpdateAccessConfigRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2619} /// // clang-format on future> @@ -5405,7 +5405,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.UpdateAccessConfigRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2618} + /// [google.cloud.cpp.compute.instances.v1.UpdateAccessConfigRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2619} /// // clang-format on future> @@ -5476,7 +5476,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.UpdateDisplayDeviceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2662} + /// [google.cloud.cpp.compute.instances.v1.UpdateDisplayDeviceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2663} /// // clang-format on future> @@ -5538,7 +5538,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.UpdateDisplayDeviceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2662} + /// [google.cloud.cpp.compute.instances.v1.UpdateDisplayDeviceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2663} /// // clang-format on future> @@ -5612,7 +5612,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.UpdateNetworkInterfaceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2768} + /// [google.cloud.cpp.compute.instances.v1.UpdateNetworkInterfaceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2769} /// // clang-format on future> @@ -5677,7 +5677,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.UpdateNetworkInterfaceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2768} + /// [google.cloud.cpp.compute.instances.v1.UpdateNetworkInterfaceRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2769} /// // clang-format on future> @@ -5748,7 +5748,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.UpdateShieldedInstanceConfigRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2812} + /// [google.cloud.cpp.compute.instances.v1.UpdateShieldedInstanceConfigRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2813} /// // clang-format on future> @@ -5812,7 +5812,7 @@ class InstancesClient { /// [`future`]: @ref google::cloud::future /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status - /// [google.cloud.cpp.compute.instances.v1.UpdateShieldedInstanceConfigRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2812} + /// [google.cloud.cpp.compute.instances.v1.UpdateShieldedInstanceConfigRequest]: @cloud_cpp_reference_link{google/cloud/compute/instances/v1/instances.proto#L2813} /// // clang-format on future> diff --git a/google/cloud/compute/interconnect_attachments/v1/interconnect_attachments_client.h b/google/cloud/compute/interconnect_attachments/v1/interconnect_attachments_client.h index 380af1448068a..36eaf1eab1d68 100644 --- a/google/cloud/compute/interconnect_attachments/v1/interconnect_attachments_client.h +++ b/google/cloud/compute/interconnect_attachments/v1/interconnect_attachments_client.h @@ -124,7 +124,7 @@ class InterconnectAttachmentsClient { /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status /// [google.cloud.cpp.compute.interconnect_attachments.v1.AggregatedListInterconnectAttachmentsRequest]: @cloud_cpp_reference_link{google/cloud/compute/interconnect_attachments/v1/interconnect_attachments.proto#L137} - /// [google.cloud.cpp.compute.v1.InterconnectAttachmentsScopedList]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_085.proto#L878} + /// [google.cloud.cpp.compute.v1.InterconnectAttachmentsScopedList]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_085.proto#L879} /// // clang-format on StreamRange GetRule( @@ -809,7 +809,7 @@ class OrganizationSecurityPoliciesClient { /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status /// [google.cloud.cpp.compute.organization_security_policies.v1.GetRuleRequest]: @cloud_cpp_reference_link{google/cloud/compute/organization_security_policies/v1/organization_security_policies.proto#L414} - /// [google.cloud.cpp.compute.v1.SecurityPolicyRule]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_141.proto#L503} + /// [google.cloud.cpp.compute.v1.SecurityPolicyRule]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_141.proto#L504} /// // clang-format on StatusOr GetRule( diff --git a/google/cloud/compute/region_backend_services/v1/region_backend_services_client.h b/google/cloud/compute/region_backend_services/v1/region_backend_services_client.h index 065777f2f0499..bb012d11defa9 100644 --- a/google/cloud/compute/region_backend_services/v1/region_backend_services_client.h +++ b/google/cloud/compute/region_backend_services/v1/region_backend_services_client.h @@ -234,7 +234,7 @@ class RegionBackendServicesClient { /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status /// [google.cloud.cpp.compute.region_backend_services.v1.GetBackendServiceRequest]: @cloud_cpp_reference_link{google/cloud/compute/region_backend_services/v1/region_backend_services.proto#L239} - /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L282} + /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L284} /// // clang-format on StatusOr GetBackendService( @@ -266,7 +266,7 @@ class RegionBackendServicesClient { /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status /// [google.cloud.cpp.compute.region_backend_services.v1.GetBackendServiceRequest]: @cloud_cpp_reference_link{google/cloud/compute/region_backend_services/v1/region_backend_services.proto#L239} - /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L282} + /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L284} /// // clang-format on StatusOr GetBackendService( @@ -298,7 +298,7 @@ class RegionBackendServicesClient { /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status /// [google.cloud.cpp.compute.region_backend_services.v1.GetHealthRequest]: @cloud_cpp_reference_link{google/cloud/compute/region_backend_services/v1/region_backend_services.proto#L254} - /// [google.cloud.cpp.compute.v1.BackendServiceGroupHealth]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L1272} + /// [google.cloud.cpp.compute.v1.BackendServiceGroupHealth]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L1275} /// // clang-format on StatusOr @@ -334,7 +334,7 @@ class RegionBackendServicesClient { /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status /// [google.cloud.cpp.compute.region_backend_services.v1.GetHealthRequest]: @cloud_cpp_reference_link{google/cloud/compute/region_backend_services/v1/region_backend_services.proto#L254} - /// [google.cloud.cpp.compute.v1.BackendServiceGroupHealth]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L1272} + /// [google.cloud.cpp.compute.v1.BackendServiceGroupHealth]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L1275} /// // clang-format on StatusOr @@ -565,7 +565,7 @@ class RegionBackendServicesClient { /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status /// [google.cloud.cpp.compute.region_backend_services.v1.ListRegionBackendServicesRequest]: @cloud_cpp_reference_link{google/cloud/compute/region_backend_services/v1/region_backend_services.proto#L327} - /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L282} + /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L284} /// // clang-format on StreamRange @@ -607,7 +607,7 @@ class RegionBackendServicesClient { /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status /// [google.cloud.cpp.compute.region_backend_services.v1.ListRegionBackendServicesRequest]: @cloud_cpp_reference_link{google/cloud/compute/region_backend_services/v1/region_backend_services.proto#L327} - /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L282} + /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L284} /// // clang-format on StreamRange @@ -650,7 +650,7 @@ class RegionBackendServicesClient { /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status /// [google.cloud.cpp.compute.region_backend_services.v1.ListUsableRequest]: @cloud_cpp_reference_link{google/cloud/compute/region_backend_services/v1/region_backend_services.proto#L432} - /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L282} + /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L284} /// // clang-format on StreamRange ListUsable( @@ -693,7 +693,7 @@ class RegionBackendServicesClient { /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status /// [google.cloud.cpp.compute.region_backend_services.v1.ListUsableRequest]: @cloud_cpp_reference_link{google/cloud/compute/region_backend_services/v1/region_backend_services.proto#L432} - /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L282} + /// [google.cloud.cpp.compute.v1.BackendService]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_000.proto#L284} /// // clang-format on StreamRange ListUsable( diff --git a/google/cloud/compute/region_security_policies/v1/region_security_policies_client.h b/google/cloud/compute/region_security_policies/v1/region_security_policies_client.h index 5ebad0af96d1b..09837a85bdb0b 100644 --- a/google/cloud/compute/region_security_policies/v1/region_security_policies_client.h +++ b/google/cloud/compute/region_security_policies/v1/region_security_policies_client.h @@ -422,7 +422,7 @@ class RegionSecurityPoliciesClient { /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status /// [google.cloud.cpp.compute.region_security_policies.v1.GetRuleRequest]: @cloud_cpp_reference_link{google/cloud/compute/region_security_policies/v1/region_security_policies.proto#L233} - /// [google.cloud.cpp.compute.v1.SecurityPolicyRule]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_141.proto#L503} + /// [google.cloud.cpp.compute.v1.SecurityPolicyRule]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_141.proto#L504} /// // clang-format on StatusOr GetRule( @@ -454,7 +454,7 @@ class RegionSecurityPoliciesClient { /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status /// [google.cloud.cpp.compute.region_security_policies.v1.GetRuleRequest]: @cloud_cpp_reference_link{google/cloud/compute/region_security_policies/v1/region_security_policies.proto#L233} - /// [google.cloud.cpp.compute.v1.SecurityPolicyRule]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_141.proto#L503} + /// [google.cloud.cpp.compute.v1.SecurityPolicyRule]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_141.proto#L504} /// // clang-format on StatusOr GetRule( diff --git a/google/cloud/compute/security_policies/v1/security_policies_client.h b/google/cloud/compute/security_policies/v1/security_policies_client.h index 4c753adecd4f7..53c2e9b3a0a1f 100644 --- a/google/cloud/compute/security_policies/v1/security_policies_client.h +++ b/google/cloud/compute/security_policies/v1/security_policies_client.h @@ -502,7 +502,7 @@ class SecurityPoliciesClient { /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status /// [google.cloud.cpp.compute.security_policies.v1.GetRuleRequest]: @cloud_cpp_reference_link{google/cloud/compute/security_policies/v1/security_policies.proto#L360} - /// [google.cloud.cpp.compute.v1.SecurityPolicyRule]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_141.proto#L503} + /// [google.cloud.cpp.compute.v1.SecurityPolicyRule]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_141.proto#L504} /// // clang-format on StatusOr GetRule( @@ -534,7 +534,7 @@ class SecurityPoliciesClient { /// [`StatusOr`]: @ref google::cloud::StatusOr /// [`Status`]: @ref google::cloud::Status /// [google.cloud.cpp.compute.security_policies.v1.GetRuleRequest]: @cloud_cpp_reference_link{google/cloud/compute/security_policies/v1/security_policies.proto#L360} - /// [google.cloud.cpp.compute.v1.SecurityPolicyRule]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_141.proto#L503} + /// [google.cloud.cpp.compute.v1.SecurityPolicyRule]: @cloud_cpp_reference_link{google/cloud/compute/v1/internal/common_141.proto#L504} /// // clang-format on StatusOr GetRule( diff --git a/google/cloud/internal/debug_string_protobuf.cc b/google/cloud/internal/debug_string_protobuf.cc index e652d2458bbd5..6a9abb2538650 100644 --- a/google/cloud/internal/debug_string_protobuf.cc +++ b/google/cloud/internal/debug_string_protobuf.cc @@ -62,12 +62,38 @@ class TimestampMessagePrinter } }; +template +auto SetRedact(Printer& p, int) -> decltype(p.SetRedactDebugString(true), + void()) { + p.SetRedactDebugString(true); +} + +template +void SetRedact(Printer&, ...) {} + +void RemoveSilentMarker(std::string& str) { + auto start = str.find("goo.gle/"); + if (start != std::string::npos) { + auto nl = str.find('\n', start); + if (nl != std::string::npos) { + str.erase(0, nl + 1); + } else { + auto end = str.find_first_of(" \t", start); + if (end != std::string::npos) { + auto next = str.find_first_not_of(" \t", end); + str.erase(0, next == std::string::npos ? str.size() : next); + } + } + } +} + } // namespace std::string DebugString(google::protobuf::Message const& m, TracingOptions const& options) { std::string str; google::protobuf::TextFormat::Printer p; + SetRedact(p, 0); p.SetSingleLineMode(options.single_line_mode()); if (!options.single_line_mode()) p.SetInitialIndentLevel(1); p.SetUseShortRepeatedPrimitives(options.use_short_repeated_primitives()); @@ -80,6 +106,7 @@ std::string DebugString(google::protobuf::Message const& m, p.RegisterMessagePrinter(google::protobuf::Timestamp::descriptor(), new TimestampMessagePrinter); p.PrintToString(m, &str); + RemoveSilentMarker(str); return absl::StrCat(m.GetTypeName(), " {", (options.single_line_mode() ? " " : "\n"), str, "}"); } diff --git a/google/cloud/internal/debug_string_protobuf_test.cc b/google/cloud/internal/debug_string_protobuf_test.cc index bb6bfed365c57..daf167a2f13e0 100644 --- a/google/cloud/internal/debug_string_protobuf_test.cc +++ b/google/cloud/internal/debug_string_protobuf_test.cc @@ -18,6 +18,9 @@ #include "google/iam/v1/policy.pb.h" #include "google/protobuf/duration.pb.h" #include "google/protobuf/timestamp.pb.h" +#include +#include +#include #include #include @@ -131,6 +134,63 @@ TEST(LogWrapperHelpers, Timestamp) { "single_line_mode=off"))); } +template < + typename Printer, + typename = decltype(std::declval().SetRedactDebugString(true))> +std::true_type SupportsRedact(int); + +template +std::false_type SupportsRedact(...); + +TEST(LogWrapperHelpers, RedactedField) { + if (!decltype(SupportsRedact( + 0))::value) { + GTEST_SKIP() + << "SetRedactDebugString is not supported in this Protobuf version"; + } + + google::protobuf::FileDescriptorProto file_proto; + file_proto.set_name("test_redact.proto"); + file_proto.set_syntax("proto3"); + google::protobuf::DescriptorProto* message_proto = + file_proto.add_message_type(); + message_proto->set_name("RedactedMessage"); + + google::protobuf::FieldDescriptorProto* unredacted_field = + message_proto->add_field(); + unredacted_field->set_name("public_field"); + unredacted_field->set_number(1); + unredacted_field->set_type( + google::protobuf::FieldDescriptorProto::TYPE_STRING); + + google::protobuf::FieldDescriptorProto* redacted_field = + message_proto->add_field(); + redacted_field->set_name("secret_key"); + redacted_field->set_number(2); + redacted_field->set_type(google::protobuf::FieldDescriptorProto::TYPE_STRING); + redacted_field->mutable_options()->set_debug_redact(true); + + google::protobuf::DescriptorPool pool; + google::protobuf::FileDescriptor const* file_desc = + pool.BuildFile(file_proto); + ASSERT_THAT(file_desc, ::testing::NotNull()); + google::protobuf::Descriptor const* msg_desc = + file_desc->FindMessageTypeByName("RedactedMessage"); + ASSERT_THAT(msg_desc, ::testing::NotNull()); + + google::protobuf::DynamicMessageFactory factory; + std::unique_ptr message( + factory.GetPrototype(msg_desc)->New()); + google::protobuf::Reflection const* reflection = message->GetReflection(); + reflection->SetString(message.get(), msg_desc->field(0), "public_value"); + reflection->SetString(message.get(), msg_desc->field(1), "secret_value"); + + TracingOptions tracing_options; + std::string const actual = DebugString(*message, tracing_options); + EXPECT_THAT(actual, ::testing::HasSubstr("public_value")); + EXPECT_THAT(actual, ::testing::Not(::testing::HasSubstr("secret_value"))); +} + } // namespace } // namespace internal GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END diff --git a/protos/google/cloud/compute/backend_buckets/v1/backend_buckets.proto b/protos/google/cloud/compute/backend_buckets/v1/backend_buckets.proto index 786682eb9bc70..e39a7bb8799e5 100644 --- a/protos/google/cloud/compute/backend_buckets/v1/backend_buckets.proto +++ b/protos/google/cloud/compute/backend_buckets/v1/backend_buckets.proto @@ -405,8 +405,11 @@ message DeleteSignedUrlKeyRequest { [(google.api.field_behavior) = REQUIRED, json_name = "backendBucket"]; // The name of the Signed URL Key to delete. - string key_name = 2 - [(google.api.field_behavior) = REQUIRED, json_name = "keyName"]; + string key_name = 2 [ + (google.api.field_behavior) = REQUIRED, + debug_redact = true, + json_name = "keyName" + ]; // Project ID for this request. string project = 3 [ diff --git a/protos/google/cloud/compute/backend_services/v1/backend_services.proto b/protos/google/cloud/compute/backend_services/v1/backend_services.proto index 9a58d6e1976ad..497a73bb88c3e 100644 --- a/protos/google/cloud/compute/backend_services/v1/backend_services.proto +++ b/protos/google/cloud/compute/backend_services/v1/backend_services.proto @@ -456,8 +456,11 @@ message DeleteSignedUrlKeyRequest { [(google.api.field_behavior) = REQUIRED, json_name = "backendService"]; // The name of the Signed URL Key to delete. - string key_name = 2 - [(google.api.field_behavior) = REQUIRED, json_name = "keyName"]; + string key_name = 2 [ + (google.api.field_behavior) = REQUIRED, + debug_redact = true, + json_name = "keyName" + ]; // Project ID for this request. string project = 3 [ diff --git a/protos/google/cloud/compute/instances/v1/instances.proto b/protos/google/cloud/compute/instances/v1/instances.proto index ade92b60c2fdd..564742edd89c3 100644 --- a/protos/google/cloud/compute/instances/v1/instances.proto +++ b/protos/google/cloud/compute/instances/v1/instances.proto @@ -1262,7 +1262,8 @@ message GetGuestAttributesRequest { optional string query_path = 3 [json_name = "queryPath"]; // Specifies the key for the guest attributes entry. - optional string variable_key = 4 [json_name = "variableKey"]; + optional string variable_key = 4 + [debug_redact = true, json_name = "variableKey"]; // The name of the zone for this request. string zone = 5 [(google.api.field_behavior) = REQUIRED, json_name = "zone"]; diff --git a/protos/google/cloud/compute/v1/internal/common_000.proto b/protos/google/cloud/compute/v1/internal/common_000.proto index 5ef86271a0eeb..80f7c8cf6c5ed 100644 --- a/protos/google/cloud/compute/v1/internal/common_000.proto +++ b/protos/google/cloud/compute/v1/internal/common_000.proto @@ -35,14 +35,16 @@ message AWSV4Signature { // request. // // @InputOnly - optional string access_key = 1 [json_name = "accessKey"]; + optional string access_key = 1 [debug_redact = true, json_name = "accessKey"]; // The identifier of an access key used for s3 bucket authentication. - optional string access_key_id = 2 [json_name = "accessKeyId"]; + optional string access_key_id = 2 + [debug_redact = true, json_name = "accessKeyId"]; // The optional version identifier for the access key. You can use this to // keep track of different iterations of your access key. - optional string access_key_version = 3 [json_name = "accessKeyVersion"]; + optional string access_key_version = 3 + [debug_redact = true, json_name = "accessKeyVersion"]; // The name of the cloud region of your origin. This is a free-form field with // the name of the region your cloud uses to host your origin. For example, @@ -1095,7 +1097,8 @@ message BackendServiceCdnPolicy { [json_name = "signedUrlCacheMaxAgeSec"]; // [Output Only] Names of the keys for signing request URLs. - repeated string signed_url_key_names = 12 [json_name = "signedUrlKeyNames"]; + repeated string signed_url_key_names = 12 + [debug_redact = true, json_name = "signedUrlKeyNames"]; } // Bypass the cache when the specified request headers are present, @@ -1551,7 +1554,7 @@ message BackendServiceList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -1682,7 +1685,7 @@ message BackendServiceListUsable { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_002.proto b/protos/google/cloud/compute/v1/internal/common_002.proto index 4389beb171687..85542a56f20dc 100644 --- a/protos/google/cloud/compute/v1/internal/common_002.proto +++ b/protos/google/cloud/compute/v1/internal/common_002.proto @@ -278,7 +278,7 @@ message ReservationSubBlocksListResponse { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_003.proto b/protos/google/cloud/compute/v1/internal/common_003.proto index 04ecb61ca19cb..291e838a1c4af 100644 --- a/protos/google/cloud/compute/v1/internal/common_003.proto +++ b/protos/google/cloud/compute/v1/internal/common_003.proto @@ -182,7 +182,7 @@ message AcceleratorTypeAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -312,7 +312,7 @@ message AcceleratorTypeList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -424,7 +424,7 @@ message AcceleratorTypesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_004.proto b/protos/google/cloud/compute/v1/internal/common_004.proto index 70595fdb595c1..504941704d6a4 100644 --- a/protos/google/cloud/compute/v1/internal/common_004.proto +++ b/protos/google/cloud/compute/v1/internal/common_004.proto @@ -592,7 +592,7 @@ message InstanceProperties { // NONE: Indicates user chose no operation. // STOP: Indicates user chose to opt for VM shutdown on key revocation. optional string key_revocation_action_type = 7 - [json_name = "keyRevocationActionType"]; + [debug_redact = true, json_name = "keyRevocationActionType"]; // Labels to apply to instances that are created from these properties. map labels = 8 [json_name = "labels"]; @@ -889,7 +889,7 @@ message ReservationAffinity { // aSPECIFIC_RESERVATION by name, specifygoogleapis.com/reservation-name as // the key and specify // the name of your reservation as its value. - optional string key = 2 [json_name = "key"]; + optional string key = 2 [debug_redact = true, json_name = "key"]; // Corresponds to the label values of a reservation resource. This can be // either a name to a reservation in the same project or @@ -1028,7 +1028,7 @@ message SchedulingGracefulShutdown { // could be scheduled. message SchedulingNodeAffinity { // Corresponds to the label key of Node resource. - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // Defines the operation of node selection. Valid operators areIN for affinity // and NOT_IN for anti-affinity. diff --git a/protos/google/cloud/compute/v1/internal/common_005.proto b/protos/google/cloud/compute/v1/internal/common_005.proto index c386b7696f8e8..18133b8fb5f32 100644 --- a/protos/google/cloud/compute/v1/internal/common_005.proto +++ b/protos/google/cloud/compute/v1/internal/common_005.proto @@ -354,7 +354,7 @@ message AddressList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_006.proto b/protos/google/cloud/compute/v1/internal/common_006.proto index 5f39c1ff85617..b8643789d1be4 100644 --- a/protos/google/cloud/compute/v1/internal/common_006.proto +++ b/protos/google/cloud/compute/v1/internal/common_006.proto @@ -132,7 +132,7 @@ message AddressAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -243,7 +243,7 @@ message AddressesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_011.proto b/protos/google/cloud/compute/v1/internal/common_011.proto index 1f8a4caee454c..844fd8c540c9b 100644 --- a/protos/google/cloud/compute/v1/internal/common_011.proto +++ b/protos/google/cloud/compute/v1/internal/common_011.proto @@ -133,7 +133,7 @@ message AutoscalerAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -263,7 +263,7 @@ message AutoscalerList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -374,7 +374,7 @@ message AutoscalersScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_012.proto b/protos/google/cloud/compute/v1/internal/common_012.proto index 6644bff0e76c1..5fa48c1c260eb 100644 --- a/protos/google/cloud/compute/v1/internal/common_012.proto +++ b/protos/google/cloud/compute/v1/internal/common_012.proto @@ -255,7 +255,8 @@ message BackendBucketCdnPolicy { [json_name = "signedUrlCacheMaxAgeSec"]; // [Output Only] Names of the keys for signing request URLs. - repeated string signed_url_key_names = 12 [json_name = "signedUrlKeyNames"]; + repeated string signed_url_key_names = 12 + [debug_redact = true, json_name = "signedUrlKeyNames"]; } // Bypass the cache when the specified request headers are present, @@ -401,7 +402,7 @@ message BackendBucketList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -531,7 +532,7 @@ message BackendBucketListUsable { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_013.proto b/protos/google/cloud/compute/v1/internal/common_013.proto index 56447c885525a..d17a6e3596517 100644 --- a/protos/google/cloud/compute/v1/internal/common_013.proto +++ b/protos/google/cloud/compute/v1/internal/common_013.proto @@ -127,7 +127,7 @@ message BackendBucketAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -238,7 +238,7 @@ message BackendBucketsScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_014.proto b/protos/google/cloud/compute/v1/internal/common_014.proto index 32aba23ae0d6f..e8715cb6816c9 100644 --- a/protos/google/cloud/compute/v1/internal/common_014.proto +++ b/protos/google/cloud/compute/v1/internal/common_014.proto @@ -131,7 +131,7 @@ message BackendServiceAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -242,7 +242,7 @@ message BackendServicesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_015.proto b/protos/google/cloud/compute/v1/internal/common_015.proto index 00ee25806b982..485366c980e55 100644 --- a/protos/google/cloud/compute/v1/internal/common_015.proto +++ b/protos/google/cloud/compute/v1/internal/common_015.proto @@ -490,7 +490,7 @@ message NetworkEndpointGroupList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -651,7 +651,7 @@ message NetworkEndpointGroupsListNetworkEndpoints { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_016.proto b/protos/google/cloud/compute/v1/internal/common_016.proto index b9380f5f543d8..0c46563de4ea2 100644 --- a/protos/google/cloud/compute/v1/internal/common_016.proto +++ b/protos/google/cloud/compute/v1/internal/common_016.proto @@ -578,7 +578,7 @@ message RouterAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -774,7 +774,7 @@ message RouterBgpPeer { // name of one of the entries in the Router.md5_authentication_keys. The // field must comply with RFC1035. optional string md5_authentication_key_name = 12 - [json_name = "md5AuthenticationKeyName"]; + [debug_redact = true, json_name = "md5AuthenticationKeyName"]; // Name of this BGP peer. // The name must be 1-63 characters long, and comply withRFC1035. @@ -1061,7 +1061,7 @@ message RouterList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -1092,7 +1092,7 @@ message RouterMd5AuthenticationKey { // copy the value from the previous configuration. This is allowed if the // key with the same name existed before the operation. Maximum length is 80 // characters. Can only contain printable ASCII characters. - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // Name used to identify the key. // @@ -1751,7 +1751,7 @@ message RoutersListBgpRoutes { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -1886,7 +1886,7 @@ message RoutersListNamedSets { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -2021,7 +2021,7 @@ message RoutersListRoutePolicies { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -2137,7 +2137,7 @@ message RoutersScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -2358,7 +2358,7 @@ message VmEndpointNatMappingsList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_017.proto b/protos/google/cloud/compute/v1/internal/common_017.proto index 0d72a21ffbce6..2c6f462ced9c8 100644 --- a/protos/google/cloud/compute/v1/internal/common_017.proto +++ b/protos/google/cloud/compute/v1/internal/common_017.proto @@ -617,7 +617,7 @@ message DiskList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_019.proto b/protos/google/cloud/compute/v1/internal/common_019.proto index 0b7f91e3d2c30..ec753b59c9d14 100644 --- a/protos/google/cloud/compute/v1/internal/common_019.proto +++ b/protos/google/cloud/compute/v1/internal/common_019.proto @@ -424,7 +424,7 @@ message Operation { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_020.proto b/protos/google/cloud/compute/v1/internal/common_020.proto index dce2fd83e4641..2a75b9a4738c6 100644 --- a/protos/google/cloud/compute/v1/internal/common_020.proto +++ b/protos/google/cloud/compute/v1/internal/common_020.proto @@ -149,7 +149,7 @@ message DiskAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -188,7 +188,8 @@ message DiskUpdateKmsKeyRequest { // // Where project is the project ID or // project number. - optional string kms_key_name = 1 [json_name = "kmsKeyName"]; + optional string kms_key_name = 1 + [debug_redact = true, json_name = "kmsKeyName"]; } message DisksAddResourcePoliciesRequest { @@ -294,7 +295,7 @@ message DisksScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_021.proto b/protos/google/cloud/compute/v1/internal/common_021.proto index eabe07a0c114c..53c48cc861c1b 100644 --- a/protos/google/cloud/compute/v1/internal/common_021.proto +++ b/protos/google/cloud/compute/v1/internal/common_021.proto @@ -225,7 +225,7 @@ message MachineTypeAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -355,7 +355,7 @@ message MachineTypeList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -466,7 +466,7 @@ message MachineTypesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_022.proto b/protos/google/cloud/compute/v1/internal/common_022.proto index bc848f6165364..5159e562de16f 100644 --- a/protos/google/cloud/compute/v1/internal/common_022.proto +++ b/protos/google/cloud/compute/v1/internal/common_022.proto @@ -152,7 +152,7 @@ message UrlMapsAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -263,7 +263,7 @@ message UrlMapsScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_023.proto b/protos/google/cloud/compute/v1/internal/common_023.proto index 140b0330afdd1..28f25577a6fed 100644 --- a/protos/google/cloud/compute/v1/internal/common_023.proto +++ b/protos/google/cloud/compute/v1/internal/common_023.proto @@ -1722,7 +1722,7 @@ message UrlMapList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_025.proto b/protos/google/cloud/compute/v1/internal/common_025.proto index 29d72ca63b961..9cbf4491f44ec 100644 --- a/protos/google/cloud/compute/v1/internal/common_025.proto +++ b/protos/google/cloud/compute/v1/internal/common_025.proto @@ -356,7 +356,7 @@ message CommitmentAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -486,7 +486,7 @@ message CommitmentList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -621,7 +621,7 @@ message CommitmentsScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_026.proto b/protos/google/cloud/compute/v1/internal/common_026.proto index d09a374bbb266..566a50ff2ebf8 100644 --- a/protos/google/cloud/compute/v1/internal/common_026.proto +++ b/protos/google/cloud/compute/v1/internal/common_026.proto @@ -199,7 +199,7 @@ message CompositeHealthCheckAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -346,7 +346,7 @@ message CompositeHealthCheckList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -469,7 +469,7 @@ message CompositeHealthChecksScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_027.proto b/protos/google/cloud/compute/v1/internal/common_027.proto index 0f73867c7b39c..1726134e076bc 100644 --- a/protos/google/cloud/compute/v1/internal/common_027.proto +++ b/protos/google/cloud/compute/v1/internal/common_027.proto @@ -167,7 +167,7 @@ message CrossSiteNetworkList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_028.proto b/protos/google/cloud/compute/v1/internal/common_028.proto index 72c66188c2a56..88d3a12fe1d38 100644 --- a/protos/google/cloud/compute/v1/internal/common_028.proto +++ b/protos/google/cloud/compute/v1/internal/common_028.proto @@ -34,7 +34,8 @@ message CustomerEncryptionKey { // "kmsKeyName": "projects/kms_project_id/locations/region/keyRings/ // key_region/cryptoKeys/key // /cryptoKeyVersions/1 - optional string kms_key_name = 1 [json_name = "kmsKeyName"]; + optional string kms_key_name = 1 + [debug_redact = true, json_name = "kmsKeyName"]; // The service account being used for the encryption request for the given KMS // key. If absent, the Compute Engine default service account is used. @@ -42,7 +43,7 @@ message CustomerEncryptionKey { // // "kmsKeyServiceAccount": "name@project_id.iam.gserviceaccount.com/ optional string kms_key_service_account = 2 - [json_name = "kmsKeyServiceAccount"]; + [debug_redact = true, json_name = "kmsKeyServiceAccount"]; // [DEPRECATED] CSEK is no longer supported. Use CMEK instead. // Specifies a 256-bit customer-supplied @@ -53,7 +54,7 @@ message CustomerEncryptionKey { // // "rawKey": // "SGVsbG8gZnJvbSBHb29nbGUgQ2xvdWQgUGxhdGZvcm0=" - optional string raw_key = 3 [json_name = "rawKey"]; + optional string raw_key = 3 [debug_redact = true, json_name = "rawKey"]; // [DEPRECATED] CSEK is no longer supported. Use CMEK instead. // Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit @@ -78,7 +79,8 @@ message CustomerEncryptionKey { // // // https://cloud-certs.storage.googleapis.com/google-cloud-csek-ingress.pem - optional string rsa_encrypted_key = 4 [json_name = "rsaEncryptedKey"]; + optional string rsa_encrypted_key = 4 + [debug_redact = true, json_name = "rsaEncryptedKey"]; // [DEPRECATED] CSEK is no longer supported. Use CMEK instead. // [Output only] TheRFC diff --git a/protos/google/cloud/compute/v1/internal/common_029.proto b/protos/google/cloud/compute/v1/internal/common_029.proto index badb6e594db9d..b7b307bbb88de 100644 --- a/protos/google/cloud/compute/v1/internal/common_029.proto +++ b/protos/google/cloud/compute/v1/internal/common_029.proto @@ -69,7 +69,8 @@ message GuestAttributes { optional string self_link = 4 [json_name = "selfLink"]; // The key to search for. - optional string variable_key = 5 [json_name = "variableKey"]; + optional string variable_key = 5 + [debug_redact = true, json_name = "variableKey"]; // Output only. [Output Only] The value found for the requested key. optional string variable_value = 6 [json_name = "variableValue"]; @@ -78,7 +79,7 @@ message GuestAttributes { // A guest attributes namespace/key/value entry. message GuestAttributesEntry { // Key for the guest attribute entry. - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // Namespace for the guest attribute entry. optional string namespace = 2 [json_name = "namespace"]; @@ -174,7 +175,7 @@ message Instance { // NONE: Indicates user chose no operation. // STOP: Indicates user chose to opt for VM shutdown on key revocation. optional string key_revocation_action_type = 14 - [json_name = "keyRevocationActionType"]; + [debug_redact = true, json_name = "keyRevocationActionType"]; // Output only. [Output Only] Type of the resource. Always compute#instance // for instances. @@ -512,7 +513,7 @@ message InstanceAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -642,7 +643,7 @@ message InstanceList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -772,7 +773,7 @@ message InstanceListReferrers { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -983,7 +984,7 @@ message InstancesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_030.proto b/protos/google/cloud/compute/v1/internal/common_030.proto index d96d6fbb7e23f..93f2ee062b270 100644 --- a/protos/google/cloud/compute/v1/internal/common_030.proto +++ b/protos/google/cloud/compute/v1/internal/common_030.proto @@ -198,7 +198,7 @@ message PreviewFeatureList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_031.proto b/protos/google/cloud/compute/v1/internal/common_031.proto index 3cb0ecb0ea44c..1592b4949742d 100644 --- a/protos/google/cloud/compute/v1/internal/common_031.proto +++ b/protos/google/cloud/compute/v1/internal/common_031.proto @@ -286,7 +286,7 @@ message ZoneList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_033.proto b/protos/google/cloud/compute/v1/internal/common_033.proto index 17fc111fea903..33105ede2bd59 100644 --- a/protos/google/cloud/compute/v1/internal/common_033.proto +++ b/protos/google/cloud/compute/v1/internal/common_033.proto @@ -269,7 +269,7 @@ message InstanceTemplateList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_034.proto b/protos/google/cloud/compute/v1/internal/common_034.proto index 40c080da858f3..f3959299ed407 100644 --- a/protos/google/cloud/compute/v1/internal/common_034.proto +++ b/protos/google/cloud/compute/v1/internal/common_034.proto @@ -340,7 +340,7 @@ message XpnHostList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_036.proto b/protos/google/cloud/compute/v1/internal/common_036.proto index 3fb4e1a4cfc72..5496166f9bc0e 100644 --- a/protos/google/cloud/compute/v1/internal/common_036.proto +++ b/protos/google/cloud/compute/v1/internal/common_036.proto @@ -131,7 +131,7 @@ message DiskTypeAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -261,7 +261,7 @@ message DiskTypeList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -372,7 +372,7 @@ message DiskTypesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_039.proto b/protos/google/cloud/compute/v1/internal/common_039.proto index 9f691be4910d7..9b21d0e44eb8d 100644 --- a/protos/google/cloud/compute/v1/internal/common_039.proto +++ b/protos/google/cloud/compute/v1/internal/common_039.proto @@ -154,7 +154,7 @@ message ExchangedPeeringRoutesList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -409,7 +409,7 @@ message NetworkList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_041.proto b/protos/google/cloud/compute/v1/internal/common_041.proto index 675c108dae48e..c8e250b1ad89d 100644 --- a/protos/google/cloud/compute/v1/internal/common_041.proto +++ b/protos/google/cloud/compute/v1/internal/common_041.proto @@ -256,7 +256,7 @@ message ExternalVpnGatewayList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_044.proto b/protos/google/cloud/compute/v1/internal/common_044.proto index a4e4f9cd2e4fe..a2d0c65649479 100644 --- a/protos/google/cloud/compute/v1/internal/common_044.proto +++ b/protos/google/cloud/compute/v1/internal/common_044.proto @@ -129,7 +129,7 @@ message FirewallList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_046.proto b/protos/google/cloud/compute/v1/internal/common_046.proto index fb2e3864f6037..bf002e3802e5d 100644 --- a/protos/google/cloud/compute/v1/internal/common_046.proto +++ b/protos/google/cloud/compute/v1/internal/common_046.proto @@ -111,7 +111,7 @@ message FirewallPoliciesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -245,7 +245,7 @@ message NetworkFirewallPolicyAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_047.proto b/protos/google/cloud/compute/v1/internal/common_047.proto index b8cbb3fc654df..978b591f0e15b 100644 --- a/protos/google/cloud/compute/v1/internal/common_047.proto +++ b/protos/google/cloud/compute/v1/internal/common_047.proto @@ -250,7 +250,7 @@ message FirewallPolicyList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_050.proto b/protos/google/cloud/compute/v1/internal/common_050.proto index 20f4ef0acaaa8..05765d1a17774 100644 --- a/protos/google/cloud/compute/v1/internal/common_050.proto +++ b/protos/google/cloud/compute/v1/internal/common_050.proto @@ -658,7 +658,7 @@ message ForwardingRuleList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_051.proto b/protos/google/cloud/compute/v1/internal/common_051.proto index 5565a1781ad9f..dd32b8a00320c 100644 --- a/protos/google/cloud/compute/v1/internal/common_051.proto +++ b/protos/google/cloud/compute/v1/internal/common_051.proto @@ -131,7 +131,7 @@ message ForwardingRuleAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -242,7 +242,7 @@ message ForwardingRulesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_052.proto b/protos/google/cloud/compute/v1/internal/common_052.proto index d40e3d8cff357..5bcb84a3af8fb 100644 --- a/protos/google/cloud/compute/v1/internal/common_052.proto +++ b/protos/google/cloud/compute/v1/internal/common_052.proto @@ -595,7 +595,7 @@ message FutureReservationsAggregatedListResponse { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -731,7 +731,7 @@ message FutureReservationsListResponse { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -843,7 +843,7 @@ message FutureReservationsScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_053.proto b/protos/google/cloud/compute/v1/internal/common_053.proto index d46e21461a4ee..ae3e035cb4a1e 100644 --- a/protos/google/cloud/compute/v1/internal/common_053.proto +++ b/protos/google/cloud/compute/v1/internal/common_053.proto @@ -574,7 +574,7 @@ message HealthCheckList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_058.proto b/protos/google/cloud/compute/v1/internal/common_058.proto index 9d6725f0f51cb..d012650b7feb3 100644 --- a/protos/google/cloud/compute/v1/internal/common_058.proto +++ b/protos/google/cloud/compute/v1/internal/common_058.proto @@ -232,7 +232,7 @@ message GlobalVmExtensionPolicyList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -460,7 +460,7 @@ message VmExtensionPoliciesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -597,7 +597,7 @@ message VmExtensionPolicyAggregatedListResponse { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_060.proto b/protos/google/cloud/compute/v1/internal/common_060.proto index 3b2fa0b9f571d..229fcc60b47d6 100644 --- a/protos/google/cloud/compute/v1/internal/common_060.proto +++ b/protos/google/cloud/compute/v1/internal/common_060.proto @@ -109,7 +109,7 @@ message HealthAggregationPoliciesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -336,7 +336,7 @@ message HealthAggregationPolicyAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -466,7 +466,7 @@ message HealthAggregationPolicyList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_062.proto b/protos/google/cloud/compute/v1/internal/common_062.proto index 347bcebc76ba5..ea89426b4791c 100644 --- a/protos/google/cloud/compute/v1/internal/common_062.proto +++ b/protos/google/cloud/compute/v1/internal/common_062.proto @@ -235,7 +235,7 @@ message HealthCheckServiceAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -367,7 +367,7 @@ message HealthCheckServicesList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -478,7 +478,7 @@ message HealthCheckServicesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_063.proto b/protos/google/cloud/compute/v1/internal/common_063.proto index b5c97346f1797..65dece62142db 100644 --- a/protos/google/cloud/compute/v1/internal/common_063.proto +++ b/protos/google/cloud/compute/v1/internal/common_063.proto @@ -130,7 +130,7 @@ message HealthChecksAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -241,7 +241,7 @@ message HealthChecksScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_064.proto b/protos/google/cloud/compute/v1/internal/common_064.proto index 1b3017407e8a1..61cb6f4d011da 100644 --- a/protos/google/cloud/compute/v1/internal/common_064.proto +++ b/protos/google/cloud/compute/v1/internal/common_064.proto @@ -206,7 +206,7 @@ message HealthSourceAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -352,7 +352,7 @@ message HealthSourceList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -494,7 +494,7 @@ message HealthSourcesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_066.proto b/protos/google/cloud/compute/v1/internal/common_066.proto index 2c311713c53ac..c31f5381cc08d 100644 --- a/protos/google/cloud/compute/v1/internal/common_066.proto +++ b/protos/google/cloud/compute/v1/internal/common_066.proto @@ -205,7 +205,7 @@ message HostsListResponse { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_067.proto b/protos/google/cloud/compute/v1/internal/common_067.proto index 5be0ea518d78f..2b9d244df358c 100644 --- a/protos/google/cloud/compute/v1/internal/common_067.proto +++ b/protos/google/cloud/compute/v1/internal/common_067.proto @@ -196,7 +196,7 @@ message HttpHealthCheckList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_068.proto b/protos/google/cloud/compute/v1/internal/common_068.proto index b5c6200024c68..91d40477f2166 100644 --- a/protos/google/cloud/compute/v1/internal/common_068.proto +++ b/protos/google/cloud/compute/v1/internal/common_068.proto @@ -195,7 +195,7 @@ message HttpsHealthCheckList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_071.proto b/protos/google/cloud/compute/v1/internal/common_071.proto index 44b0cda7d1714..1bd8a5a3bd70c 100644 --- a/protos/google/cloud/compute/v1/internal/common_071.proto +++ b/protos/google/cloud/compute/v1/internal/common_071.proto @@ -128,7 +128,7 @@ message ImageList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_072.proto b/protos/google/cloud/compute/v1/internal/common_072.proto index a1acbdda00122..95ab0d4d9f492 100644 --- a/protos/google/cloud/compute/v1/internal/common_072.proto +++ b/protos/google/cloud/compute/v1/internal/common_072.proto @@ -275,7 +275,7 @@ message NodeGroupAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -423,7 +423,7 @@ message NodeGroupList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -636,7 +636,7 @@ message NodeGroupsListNodes { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -755,7 +755,7 @@ message NodeGroupsScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_074.proto b/protos/google/cloud/compute/v1/internal/common_074.proto index 323743bf1b9ec..9285e1fa59d13 100644 --- a/protos/google/cloud/compute/v1/internal/common_074.proto +++ b/protos/google/cloud/compute/v1/internal/common_074.proto @@ -136,7 +136,7 @@ message InstanceGroupAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -268,7 +268,7 @@ message InstanceGroupList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -405,7 +405,7 @@ message InstanceGroupsListInstances { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -534,7 +534,7 @@ message InstanceGroupsScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_075.proto b/protos/google/cloud/compute/v1/internal/common_075.proto index 8c276973be9a2..965aab8a22660 100644 --- a/protos/google/cloud/compute/v1/internal/common_075.proto +++ b/protos/google/cloud/compute/v1/internal/common_075.proto @@ -133,7 +133,7 @@ message InstanceGroupManagerAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -264,7 +264,7 @@ message InstanceGroupManagerList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -513,7 +513,7 @@ message InstanceGroupManagersListPerInstanceConfigsResp { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -647,7 +647,7 @@ message InstanceGroupManagersScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_077.proto b/protos/google/cloud/compute/v1/internal/common_077.proto index fe5ade955c083..5fa83ed25bf40 100644 --- a/protos/google/cloud/compute/v1/internal/common_077.proto +++ b/protos/google/cloud/compute/v1/internal/common_077.proto @@ -130,7 +130,7 @@ message InstanceGroupManagerResizeRequestsListResponse { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_080.proto b/protos/google/cloud/compute/v1/internal/common_080.proto index ea2491f6c1446..fed1d3c59b994 100644 --- a/protos/google/cloud/compute/v1/internal/common_080.proto +++ b/protos/google/cloud/compute/v1/internal/common_080.proto @@ -128,7 +128,7 @@ message InstanceTemplateAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -241,7 +241,7 @@ message InstanceTemplatesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_081.proto b/protos/google/cloud/compute/v1/internal/common_081.proto index e1f1308968b36..a793c8f9e638b 100644 --- a/protos/google/cloud/compute/v1/internal/common_081.proto +++ b/protos/google/cloud/compute/v1/internal/common_081.proto @@ -277,7 +277,7 @@ message InstantSnapshotList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_082.proto b/protos/google/cloud/compute/v1/internal/common_082.proto index 537c8a6e21c52..cacbc6f813e7e 100644 --- a/protos/google/cloud/compute/v1/internal/common_082.proto +++ b/protos/google/cloud/compute/v1/internal/common_082.proto @@ -132,7 +132,7 @@ message InstantSnapshotAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -244,7 +244,7 @@ message InstantSnapshotsScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_083.proto b/protos/google/cloud/compute/v1/internal/common_083.proto index 76b52047a30b1..3c568ae80505d 100644 --- a/protos/google/cloud/compute/v1/internal/common_083.proto +++ b/protos/google/cloud/compute/v1/internal/common_083.proto @@ -217,7 +217,7 @@ message ListInstantSnapshotGroups { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_084.proto b/protos/google/cloud/compute/v1/internal/common_084.proto index 4cb85d9c0c7aa..1d423bedee470 100644 --- a/protos/google/cloud/compute/v1/internal/common_084.proto +++ b/protos/google/cloud/compute/v1/internal/common_084.proto @@ -457,7 +457,7 @@ message InterconnectList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_085.proto b/protos/google/cloud/compute/v1/internal/common_085.proto index 15606f13466af..eca584b2d3ff2 100644 --- a/protos/google/cloud/compute/v1/internal/common_085.proto +++ b/protos/google/cloud/compute/v1/internal/common_085.proto @@ -319,7 +319,8 @@ message InterconnectAttachment { // The opaque identifier of a PARTNER attachment used to initiate // provisioning with a selected partner. // Of the form "XXXXX/region/domain" - optional string pairing_key = 24 [json_name = "pairingKey"]; + optional string pairing_key = 24 + [debug_redact = true, json_name = "pairingKey"]; // Input only. [Input Only] Additional params passed with the request, but not // persisted @@ -579,7 +580,7 @@ message InterconnectAttachmentAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -804,7 +805,7 @@ message InterconnectAttachmentList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -963,7 +964,7 @@ message InterconnectAttachmentsScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_087.proto b/protos/google/cloud/compute/v1/internal/common_087.proto index 387d82b509bdd..6d68e1bfa9904 100644 --- a/protos/google/cloud/compute/v1/internal/common_087.proto +++ b/protos/google/cloud/compute/v1/internal/common_087.proto @@ -338,7 +338,7 @@ message InterconnectAttachmentGroupsListResponse { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_089.proto b/protos/google/cloud/compute/v1/internal/common_089.proto index 9929cb0de9a51..c3382261b9456 100644 --- a/protos/google/cloud/compute/v1/internal/common_089.proto +++ b/protos/google/cloud/compute/v1/internal/common_089.proto @@ -443,7 +443,7 @@ message InterconnectGroupsListResponse { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_090.proto b/protos/google/cloud/compute/v1/internal/common_090.proto index b39d7e5fc8f35..ed46ed5b1fd94 100644 --- a/protos/google/cloud/compute/v1/internal/common_090.proto +++ b/protos/google/cloud/compute/v1/internal/common_090.proto @@ -271,7 +271,7 @@ message InterconnectLocationList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_091.proto b/protos/google/cloud/compute/v1/internal/common_091.proto index db9b1488d1c0f..c674e16433c5b 100644 --- a/protos/google/cloud/compute/v1/internal/common_091.proto +++ b/protos/google/cloud/compute/v1/internal/common_091.proto @@ -333,7 +333,7 @@ message InterconnectRemoteLocationList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_092.proto b/protos/google/cloud/compute/v1/internal/common_092.proto index 05bf6ab6b810b..2e7ceeb9a0d3c 100644 --- a/protos/google/cloud/compute/v1/internal/common_092.proto +++ b/protos/google/cloud/compute/v1/internal/common_092.proto @@ -247,7 +247,7 @@ message LicensesListResponse { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_095.proto b/protos/google/cloud/compute/v1/internal/common_095.proto index 489d02913d18d..9eed9db9aa2bc 100644 --- a/protos/google/cloud/compute/v1/internal/common_095.proto +++ b/protos/google/cloud/compute/v1/internal/common_095.proto @@ -266,7 +266,7 @@ message MachineImageList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -470,7 +470,7 @@ message SourceInstanceProperties { // NONE: Indicates user chose no operation. // STOP: Indicates user chose to opt for VM shutdown on key revocation. optional string key_revocation_action_type = 6 - [json_name = "keyRevocationActionType"]; + [debug_redact = true, json_name = "keyRevocationActionType"]; // Labels to apply to instances that are created from this machine image. map labels = 7 [json_name = "labels"]; @@ -504,7 +504,7 @@ message SourceInstanceProperties { // unused. // SHUTDOWN: Indicates user chose to opt for VM shutdown on key revocation. optional string post_key_revocation_action_type = 15 - [json_name = "postKeyRevocationActionType"]; + [debug_redact = true, json_name = "postKeyRevocationActionType"]; // Specifies the scheduling options for the instances that are created from // this machine image. diff --git a/protos/google/cloud/compute/v1/internal/common_096.proto b/protos/google/cloud/compute/v1/internal/common_096.proto index 8e1abc2ae439b..72e4a0d697466 100644 --- a/protos/google/cloud/compute/v1/internal/common_096.proto +++ b/protos/google/cloud/compute/v1/internal/common_096.proto @@ -41,7 +41,7 @@ message Metadata { // to // avoid ambiguity, keys must not conflict with any other metadata keys // for the project. - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // Value for the metadata entry. These are free-form strings, and only // have meaning as interpreted by the image running in the instance. The diff --git a/protos/google/cloud/compute/v1/internal/common_099.proto b/protos/google/cloud/compute/v1/internal/common_099.proto index 470b55353fe9b..62b1377325e3d 100644 --- a/protos/google/cloud/compute/v1/internal/common_099.proto +++ b/protos/google/cloud/compute/v1/internal/common_099.proto @@ -210,7 +210,7 @@ message NetworkAttachmentAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -381,7 +381,7 @@ message NetworkAttachmentList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -493,7 +493,7 @@ message NetworkAttachmentsScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_100.proto b/protos/google/cloud/compute/v1/internal/common_100.proto index e60a40377d26d..2c8066f34ca1e 100644 --- a/protos/google/cloud/compute/v1/internal/common_100.proto +++ b/protos/google/cloud/compute/v1/internal/common_100.proto @@ -190,7 +190,7 @@ message NetworkEdgeSecurityServiceAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -302,7 +302,7 @@ message NetworkEdgeSecurityServicesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_101.proto b/protos/google/cloud/compute/v1/internal/common_101.proto index b7ddefbb0e7cd..0cf2f55621246 100644 --- a/protos/google/cloud/compute/v1/internal/common_101.proto +++ b/protos/google/cloud/compute/v1/internal/common_101.proto @@ -132,7 +132,7 @@ message NetworkEndpointGroupAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -269,7 +269,7 @@ message NetworkEndpointGroupsScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_102.proto b/protos/google/cloud/compute/v1/internal/common_102.proto index 149a0c82e49bd..8c807c46319b0 100644 --- a/protos/google/cloud/compute/v1/internal/common_102.proto +++ b/protos/google/cloud/compute/v1/internal/common_102.proto @@ -406,7 +406,7 @@ message NetworkProfilesListResponse { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_103.proto b/protos/google/cloud/compute/v1/internal/common_103.proto index 311618f3fea65..7e995e0174492 100644 --- a/protos/google/cloud/compute/v1/internal/common_103.proto +++ b/protos/google/cloud/compute/v1/internal/common_103.proto @@ -222,7 +222,7 @@ message NodeTemplateAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -352,7 +352,7 @@ message NodeTemplateList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -471,7 +471,7 @@ message NodeTemplatesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_104.proto b/protos/google/cloud/compute/v1/internal/common_104.proto index 22e2074788731..907669c4dd1b3 100644 --- a/protos/google/cloud/compute/v1/internal/common_104.proto +++ b/protos/google/cloud/compute/v1/internal/common_104.proto @@ -188,7 +188,7 @@ message NodeTypeAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -318,7 +318,7 @@ message NodeTypeList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -429,7 +429,7 @@ message NodeTypesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_105.proto b/protos/google/cloud/compute/v1/internal/common_105.proto index 8cff7eeaebe8d..a230588751034 100644 --- a/protos/google/cloud/compute/v1/internal/common_105.proto +++ b/protos/google/cloud/compute/v1/internal/common_105.proto @@ -182,7 +182,7 @@ message NotificationEndpointAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -340,7 +340,7 @@ message NotificationEndpointList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -451,7 +451,7 @@ message NotificationEndpointsScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_106.proto b/protos/google/cloud/compute/v1/internal/common_106.proto index 161a9c878dbda..6dff8bc897af2 100644 --- a/protos/google/cloud/compute/v1/internal/common_106.proto +++ b/protos/google/cloud/compute/v1/internal/common_106.proto @@ -133,7 +133,7 @@ message OperationAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -244,7 +244,7 @@ message OperationsScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_107.proto b/protos/google/cloud/compute/v1/internal/common_107.proto index 0ce1a9f9f5003..f28d168bf27ab 100644 --- a/protos/google/cloud/compute/v1/internal/common_107.proto +++ b/protos/google/cloud/compute/v1/internal/common_107.proto @@ -131,7 +131,7 @@ message OperationList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_109.proto b/protos/google/cloud/compute/v1/internal/common_109.proto index 002cf6ea11de2..363537bc1cb56 100644 --- a/protos/google/cloud/compute/v1/internal/common_109.proto +++ b/protos/google/cloud/compute/v1/internal/common_109.proto @@ -210,7 +210,7 @@ message PacketMirroringAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -375,7 +375,7 @@ message PacketMirroringList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -541,7 +541,7 @@ message PacketMirroringsScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_112.proto b/protos/google/cloud/compute/v1/internal/common_112.proto index 02d96a739df3a..e562f25d227c7 100644 --- a/protos/google/cloud/compute/v1/internal/common_112.proto +++ b/protos/google/cloud/compute/v1/internal/common_112.proto @@ -254,7 +254,7 @@ message PublicAdvertisedPrefixList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_113.proto b/protos/google/cloud/compute/v1/internal/common_113.proto index f8040fc7bc92d..9c4e61f1244e1 100644 --- a/protos/google/cloud/compute/v1/internal/common_113.proto +++ b/protos/google/cloud/compute/v1/internal/common_113.proto @@ -276,7 +276,7 @@ message PublicDelegatedPrefixList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_114.proto b/protos/google/cloud/compute/v1/internal/common_114.proto index 8b7e4a86d3a4f..380640a21072d 100644 --- a/protos/google/cloud/compute/v1/internal/common_114.proto +++ b/protos/google/cloud/compute/v1/internal/common_114.proto @@ -133,7 +133,7 @@ message PublicDelegatedPrefixAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -245,7 +245,7 @@ message PublicDelegatedPrefixesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_116.proto b/protos/google/cloud/compute/v1/internal/common_116.proto index 773a4d28a7e14..6c4a3e3810ce2 100644 --- a/protos/google/cloud/compute/v1/internal/common_116.proto +++ b/protos/google/cloud/compute/v1/internal/common_116.proto @@ -134,7 +134,7 @@ message Region { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -285,7 +285,7 @@ message RegionList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_117.proto b/protos/google/cloud/compute/v1/internal/common_117.proto index 12257379bcac8..5d9a9f8121077 100644 --- a/protos/google/cloud/compute/v1/internal/common_117.proto +++ b/protos/google/cloud/compute/v1/internal/common_117.proto @@ -128,7 +128,7 @@ message RegionAutoscalerList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_118.proto b/protos/google/cloud/compute/v1/internal/common_118.proto index f3571c1d1d1be..200c93e72f8a1 100644 --- a/protos/google/cloud/compute/v1/internal/common_118.proto +++ b/protos/google/cloud/compute/v1/internal/common_118.proto @@ -128,7 +128,7 @@ message RegionDiskTypeList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_119.proto b/protos/google/cloud/compute/v1/internal/common_119.proto index 0543eacee1791..9d4d75c96ed6d 100644 --- a/protos/google/cloud/compute/v1/internal/common_119.proto +++ b/protos/google/cloud/compute/v1/internal/common_119.proto @@ -36,7 +36,8 @@ message RegionDiskUpdateKmsKeyRequest { // // Where project is the project ID or // project number. - optional string kms_key_name = 1 [json_name = "kmsKeyName"]; + optional string kms_key_name = 1 + [debug_redact = true, json_name = "kmsKeyName"]; } message RegionDisksAddResourcePoliciesRequest { diff --git a/protos/google/cloud/compute/v1/internal/common_120.proto b/protos/google/cloud/compute/v1/internal/common_120.proto index c06e27677b15b..b1c5349d5434e 100644 --- a/protos/google/cloud/compute/v1/internal/common_120.proto +++ b/protos/google/cloud/compute/v1/internal/common_120.proto @@ -131,7 +131,7 @@ message RegionInstanceGroupList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -261,7 +261,7 @@ message RegionInstanceGroupsListInstances { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_121.proto b/protos/google/cloud/compute/v1/internal/common_121.proto index 30a7887866364..6537666758b63 100644 --- a/protos/google/cloud/compute/v1/internal/common_121.proto +++ b/protos/google/cloud/compute/v1/internal/common_121.proto @@ -138,7 +138,7 @@ message RegionInstanceGroupManagerList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -378,7 +378,7 @@ message RegionInstanceGroupManagersListInstanceConfigsResp { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_122.proto b/protos/google/cloud/compute/v1/internal/common_122.proto index 7b57f0c48eafb..69398748c64ad 100644 --- a/protos/google/cloud/compute/v1/internal/common_122.proto +++ b/protos/google/cloud/compute/v1/internal/common_122.proto @@ -135,7 +135,7 @@ message RegionInstanceGroupManagerResizeRequestsListResponse { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_127.proto b/protos/google/cloud/compute/v1/internal/common_127.proto index 39dd8add7773e..464a43fdbeed5 100644 --- a/protos/google/cloud/compute/v1/internal/common_127.proto +++ b/protos/google/cloud/compute/v1/internal/common_127.proto @@ -31,5 +31,6 @@ message RegionSnapshotUpdateKmsKeyRequest { // // // - projects/project_id/locations/region/keyRings/region/cryptoKeys/key - optional string kms_key_name = 1 [json_name = "kmsKeyName"]; + optional string kms_key_name = 1 + [debug_redact = true, json_name = "kmsKeyName"]; } diff --git a/protos/google/cloud/compute/v1/internal/common_130.proto b/protos/google/cloud/compute/v1/internal/common_130.proto index 9f0f018eba1d2..b6809c6926275 100644 --- a/protos/google/cloud/compute/v1/internal/common_130.proto +++ b/protos/google/cloud/compute/v1/internal/common_130.proto @@ -166,7 +166,7 @@ message ReliabilityRisksListResponse { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_131.proto b/protos/google/cloud/compute/v1/internal/common_131.proto index 774f6d04eaca3..ef6069e7ae543 100644 --- a/protos/google/cloud/compute/v1/internal/common_131.proto +++ b/protos/google/cloud/compute/v1/internal/common_131.proto @@ -131,7 +131,7 @@ message ReservationAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -261,7 +261,7 @@ message ReservationList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -392,7 +392,7 @@ message ReservationsScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_132.proto b/protos/google/cloud/compute/v1/internal/common_132.proto index b650e67f2dd71..02fe95ee60da8 100644 --- a/protos/google/cloud/compute/v1/internal/common_132.proto +++ b/protos/google/cloud/compute/v1/internal/common_132.proto @@ -265,7 +265,7 @@ message ReservationBlocksListResponse { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_133.proto b/protos/google/cloud/compute/v1/internal/common_133.proto index d3580952cc09b..769ed2238822e 100644 --- a/protos/google/cloud/compute/v1/internal/common_133.proto +++ b/protos/google/cloud/compute/v1/internal/common_133.proto @@ -216,7 +216,7 @@ message ReservationSlotsListResponse { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_135.proto b/protos/google/cloud/compute/v1/internal/common_135.proto index d6f687b87e358..8748e0f1a6ce8 100644 --- a/protos/google/cloud/compute/v1/internal/common_135.proto +++ b/protos/google/cloud/compute/v1/internal/common_135.proto @@ -109,7 +109,7 @@ message ResourcePoliciesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -314,7 +314,7 @@ message ResourcePolicyAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -545,7 +545,7 @@ message ResourcePolicyList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_136.proto b/protos/google/cloud/compute/v1/internal/common_136.proto index ffe07c4134697..95d47dad27b6d 100644 --- a/protos/google/cloud/compute/v1/internal/common_136.proto +++ b/protos/google/cloud/compute/v1/internal/common_136.proto @@ -326,7 +326,7 @@ message RolloutsListResponse { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_137.proto b/protos/google/cloud/compute/v1/internal/common_137.proto index 046001b6304b9..52e4973c936f0 100644 --- a/protos/google/cloud/compute/v1/internal/common_137.proto +++ b/protos/google/cloud/compute/v1/internal/common_137.proto @@ -324,7 +324,7 @@ message RolloutPlansListResponse { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_138.proto b/protos/google/cloud/compute/v1/internal/common_138.proto index 5d2085b6bdf41..c9ea8afa1670d 100644 --- a/protos/google/cloud/compute/v1/internal/common_138.proto +++ b/protos/google/cloud/compute/v1/internal/common_138.proto @@ -288,7 +288,7 @@ message Route { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_139.proto b/protos/google/cloud/compute/v1/internal/common_139.proto index cc431efeb513b..c8b775ed650ca 100644 --- a/protos/google/cloud/compute/v1/internal/common_139.proto +++ b/protos/google/cloud/compute/v1/internal/common_139.proto @@ -128,7 +128,7 @@ message RouteList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_140.proto b/protos/google/cloud/compute/v1/internal/common_140.proto index 9f4904e8d777f..e06ce1e99bc8d 100644 --- a/protos/google/cloud/compute/v1/internal/common_140.proto +++ b/protos/google/cloud/compute/v1/internal/common_140.proto @@ -134,7 +134,7 @@ message SecurityPoliciesAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -246,7 +246,7 @@ message SecurityPoliciesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_141.proto b/protos/google/cloud/compute/v1/internal/common_141.proto index 8a4314df6b925..56ff54277cba0 100644 --- a/protos/google/cloud/compute/v1/internal/common_141.proto +++ b/protos/google/cloud/compute/v1/internal/common_141.proto @@ -463,7 +463,7 @@ message SecurityPolicyList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -495,7 +495,8 @@ message SecurityPolicyRecaptchaOptionsConfig { // site key. If not specified, a Google-managed site key is used. // This field is only supported in Global Security Policies of type // CLOUD_ARMOR. - optional string redirect_site_key = 1 [json_name = "redirectSiteKey"]; + optional string redirect_site_key = 1 + [debug_redact = true, json_name = "redirectSiteKey"]; } // Represents a rule that describes one or more match conditions along with @@ -874,7 +875,8 @@ message SecurityPolicyRuleRateLimitOptions { // TLS_JA4_FINGERPRINT: // USER_IP: // XFF_IP: - optional string enforce_on_key = 4 [json_name = "enforceOnKey"]; + optional string enforce_on_key = 4 + [debug_redact = true, json_name = "enforceOnKey"]; // If specified, any combination of values of // enforce_on_key_type/enforce_on_key_name is treated as the key on which @@ -889,7 +891,8 @@ message SecurityPolicyRuleRateLimitOptions { // value. // HTTP_COOKIE -- Name of the HTTP cookie whose value is taken as the key // value. - optional string enforce_on_key_name = 5 [json_name = "enforceOnKeyName"]; + optional string enforce_on_key_name = 5 + [debug_redact = true, json_name = "enforceOnKeyName"]; // Action to take for requests that are above the configured rate limit // threshold, to either deny with a specified HTTP response code, or @@ -919,7 +922,8 @@ message SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig { // HTTP_HEADER -- Name of the HTTP header whose value is taken as the // key value. HTTP_COOKIE -- Name of the HTTP cookie whose value is // taken as the key value. - optional string enforce_on_key_name = 1 [json_name = "enforceOnKeyName"]; + optional string enforce_on_key_name = 1 + [debug_redact = true, json_name = "enforceOnKeyName"]; // Determines the key to enforce the rate_limit_threshold on. Possible // values are: @@ -974,7 +978,8 @@ message SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfig { // TLS_JA4_FINGERPRINT: // USER_IP: // XFF_IP: - optional string enforce_on_key_type = 2 [json_name = "enforceOnKeyType"]; + optional string enforce_on_key_type = 2 + [debug_redact = true, json_name = "enforceOnKeyType"]; } message SecurityPolicyRuleRateLimitOptionsThreshold { diff --git a/protos/google/cloud/compute/v1/internal/common_143.proto b/protos/google/cloud/compute/v1/internal/common_143.proto index 32bc73d013e92..efef756baf5e8 100644 --- a/protos/google/cloud/compute/v1/internal/common_143.proto +++ b/protos/google/cloud/compute/v1/internal/common_143.proto @@ -288,7 +288,7 @@ message ServiceAttachmentAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -468,7 +468,7 @@ message ServiceAttachmentList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -580,7 +580,7 @@ message ServiceAttachmentsScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_145.proto b/protos/google/cloud/compute/v1/internal/common_145.proto index 187514bfba4b4..ef86a8f418f43 100644 --- a/protos/google/cloud/compute/v1/internal/common_145.proto +++ b/protos/google/cloud/compute/v1/internal/common_145.proto @@ -30,10 +30,10 @@ message SignedUrlKey { // character must be a lowercase letter, and all following characters must // be a dash, lowercase letter, or digit, except the last character, which // cannot be a dash. - optional string key_name = 1 [json_name = "keyName"]; + optional string key_name = 1 [debug_redact = true, json_name = "keyName"]; // 128-bit key value used for signing the URL. The key value must be a // validRFC // 4648 Section 5 base64url encoded string. - optional string key_value = 2 [json_name = "keyValue"]; + optional string key_value = 2 [debug_redact = true, json_name = "keyValue"]; } diff --git a/protos/google/cloud/compute/v1/internal/common_147.proto b/protos/google/cloud/compute/v1/internal/common_147.proto index 5ccf6deb22c68..761e3ca527ce0 100644 --- a/protos/google/cloud/compute/v1/internal/common_147.proto +++ b/protos/google/cloud/compute/v1/internal/common_147.proto @@ -128,7 +128,7 @@ message SnapshotList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_149.proto b/protos/google/cloud/compute/v1/internal/common_149.proto index b27485db42400..2ef3b1bbe5604 100644 --- a/protos/google/cloud/compute/v1/internal/common_149.proto +++ b/protos/google/cloud/compute/v1/internal/common_149.proto @@ -32,5 +32,6 @@ message SnapshotUpdateKmsKeyRequest { // // - // projects/project_id/locations/region/keyRings/key_ring/cryptoKeys/key - optional string kms_key_name = 1 [json_name = "kmsKeyName"]; + optional string kms_key_name = 1 + [debug_redact = true, json_name = "kmsKeyName"]; } diff --git a/protos/google/cloud/compute/v1/internal/common_150.proto b/protos/google/cloud/compute/v1/internal/common_150.proto index 69961dc9dba07..3dd443ce958e0 100644 --- a/protos/google/cloud/compute/v1/internal/common_150.proto +++ b/protos/google/cloud/compute/v1/internal/common_150.proto @@ -97,7 +97,8 @@ message SslCertificate { // A value read into memory from a write-only private key file. The private // key file must be in PEM format. For security, only insert // requests include this field. - optional string private_key = 9 [json_name = "privateKey"]; + optional string private_key = 9 + [debug_redact = true, json_name = "privateKey"]; // Output only. [Output Only] URL of the region where the regional SSL // Certificate @@ -231,7 +232,7 @@ message SslCertificateList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -302,5 +303,6 @@ message SslCertificateSelfManagedSslCertificate { // A write-only private key in PEM format. Only insert // requests will include this field. - optional string private_key = 2 [json_name = "privateKey"]; + optional string private_key = 2 + [debug_redact = true, json_name = "privateKey"]; } diff --git a/protos/google/cloud/compute/v1/internal/common_151.proto b/protos/google/cloud/compute/v1/internal/common_151.proto index 84d38fbceeb12..d9b20b0dfa9df 100644 --- a/protos/google/cloud/compute/v1/internal/common_151.proto +++ b/protos/google/cloud/compute/v1/internal/common_151.proto @@ -132,7 +132,7 @@ message SslCertificateAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -243,7 +243,7 @@ message SslCertificatesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_152.proto b/protos/google/cloud/compute/v1/internal/common_152.proto index 003bf0246ee8f..063940b71bf32 100644 --- a/protos/google/cloud/compute/v1/internal/common_152.proto +++ b/protos/google/cloud/compute/v1/internal/common_152.proto @@ -133,7 +133,7 @@ message SslPoliciesAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -244,7 +244,7 @@ message SslPoliciesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_153.proto b/protos/google/cloud/compute/v1/internal/common_153.proto index 66f7df30723d9..ba3c53d717572 100644 --- a/protos/google/cloud/compute/v1/internal/common_153.proto +++ b/protos/google/cloud/compute/v1/internal/common_153.proto @@ -128,7 +128,7 @@ message SslPoliciesList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -231,7 +231,7 @@ message SslPolicy { // DEFERRED: Disabled until October 2027, enabled afterward. // ENABLED: Enabled now. optional string post_quantum_key_exchange = 14 - [json_name = "postQuantumKeyExchange"]; + [debug_redact = true, json_name = "postQuantumKeyExchange"]; // Profile specifies the set of SSL features that can be used by the load // balancer when negotiating SSL with clients. This can be one ofCOMPATIBLE, @@ -347,7 +347,7 @@ message SslPolicy { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_155.proto b/protos/google/cloud/compute/v1/internal/common_155.proto index f1f6946b90db3..02a93bb709d9a 100644 --- a/protos/google/cloud/compute/v1/internal/common_155.proto +++ b/protos/google/cloud/compute/v1/internal/common_155.proto @@ -262,7 +262,7 @@ message StoragePoolAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -445,7 +445,7 @@ message StoragePoolList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -583,7 +583,7 @@ message StoragePoolListDisks { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -789,7 +789,7 @@ message StoragePoolsScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_157.proto b/protos/google/cloud/compute/v1/internal/common_157.proto index d347c7e70a0c2..66171ad4d0604 100644 --- a/protos/google/cloud/compute/v1/internal/common_157.proto +++ b/protos/google/cloud/compute/v1/internal/common_157.proto @@ -195,7 +195,7 @@ message StoragePoolTypeAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -325,7 +325,7 @@ message StoragePoolTypeList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -437,7 +437,7 @@ message StoragePoolTypesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_158.proto b/protos/google/cloud/compute/v1/internal/common_158.proto index 647fb7a569e26..d747188412412 100644 --- a/protos/google/cloud/compute/v1/internal/common_158.proto +++ b/protos/google/cloud/compute/v1/internal/common_158.proto @@ -406,7 +406,7 @@ message SubnetworkAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -536,7 +536,7 @@ message SubnetworkList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -809,7 +809,7 @@ message SubnetworksScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -921,7 +921,7 @@ message SubnetworksScopedWarning { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -1159,7 +1159,7 @@ message UsableSubnetworksAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_159.proto b/protos/google/cloud/compute/v1/internal/common_159.proto index 37daa6dd0c730..fab0d69ea749c 100644 --- a/protos/google/cloud/compute/v1/internal/common_159.proto +++ b/protos/google/cloud/compute/v1/internal/common_159.proto @@ -194,7 +194,7 @@ message TargetGrpcProxyList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_160.proto b/protos/google/cloud/compute/v1/internal/common_160.proto index b337713bbdcdc..a0dca030d73f1 100644 --- a/protos/google/cloud/compute/v1/internal/common_160.proto +++ b/protos/google/cloud/compute/v1/internal/common_160.proto @@ -111,7 +111,7 @@ message TargetHttpProxiesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_161.proto b/protos/google/cloud/compute/v1/internal/common_161.proto index 9071e33bbf374..68679e1192c7a 100644 --- a/protos/google/cloud/compute/v1/internal/common_161.proto +++ b/protos/google/cloud/compute/v1/internal/common_161.proto @@ -220,7 +220,7 @@ message TargetHttpProxyList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_162.proto b/protos/google/cloud/compute/v1/internal/common_162.proto index ac01ba9a58ded..1072de62aaedf 100644 --- a/protos/google/cloud/compute/v1/internal/common_162.proto +++ b/protos/google/cloud/compute/v1/internal/common_162.proto @@ -111,7 +111,7 @@ message TargetHttpsProxiesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -270,7 +270,7 @@ message TargetHttpsProxyAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_163.proto b/protos/google/cloud/compute/v1/internal/common_163.proto index fec0a74890e3a..383b97a6b1697 100644 --- a/protos/google/cloud/compute/v1/internal/common_163.proto +++ b/protos/google/cloud/compute/v1/internal/common_163.proto @@ -365,7 +365,7 @@ message TargetHttpsProxyList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_164.proto b/protos/google/cloud/compute/v1/internal/common_164.proto index f3bd7f4f56f5c..d04a151ce1c6b 100644 --- a/protos/google/cloud/compute/v1/internal/common_164.proto +++ b/protos/google/cloud/compute/v1/internal/common_164.proto @@ -197,7 +197,7 @@ message TargetInstanceAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -326,7 +326,7 @@ message TargetInstanceList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -437,7 +437,7 @@ message TargetInstancesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_165.proto b/protos/google/cloud/compute/v1/internal/common_165.proto index a3d4d266fdd02..814f8c85d3f8b 100644 --- a/protos/google/cloud/compute/v1/internal/common_165.proto +++ b/protos/google/cloud/compute/v1/internal/common_165.proto @@ -263,7 +263,7 @@ message TargetPoolAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -402,7 +402,7 @@ message TargetPoolList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -545,7 +545,7 @@ message TargetPoolsScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_167.proto b/protos/google/cloud/compute/v1/internal/common_167.proto index 7c3d5fde4b3e4..5f776e86fa481 100644 --- a/protos/google/cloud/compute/v1/internal/common_167.proto +++ b/protos/google/cloud/compute/v1/internal/common_167.proto @@ -221,7 +221,7 @@ message TargetSslProxyList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_168.proto b/protos/google/cloud/compute/v1/internal/common_168.proto index a2a97bf332c69..349673dfba2f3 100644 --- a/protos/google/cloud/compute/v1/internal/common_168.proto +++ b/protos/google/cloud/compute/v1/internal/common_168.proto @@ -111,7 +111,7 @@ message TargetTcpProxiesScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -258,7 +258,7 @@ message TargetTcpProxyAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_169.proto b/protos/google/cloud/compute/v1/internal/common_169.proto index 8db0dcfc28631..61402f1e286f6 100644 --- a/protos/google/cloud/compute/v1/internal/common_169.proto +++ b/protos/google/cloud/compute/v1/internal/common_169.proto @@ -198,7 +198,7 @@ message TargetTcpProxyList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_170.proto b/protos/google/cloud/compute/v1/internal/common_170.proto index ea28311e2a3cb..131c2fd91ec99 100644 --- a/protos/google/cloud/compute/v1/internal/common_170.proto +++ b/protos/google/cloud/compute/v1/internal/common_170.proto @@ -213,7 +213,7 @@ message TargetVpnGatewayAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -343,7 +343,7 @@ message TargetVpnGatewayList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -474,7 +474,7 @@ message TargetVpnGatewaysScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_176.proto b/protos/google/cloud/compute/v1/internal/common_176.proto index ac0b91a172ea8..e1c2a5b9eb186 100644 --- a/protos/google/cloud/compute/v1/internal/common_176.proto +++ b/protos/google/cloud/compute/v1/internal/common_176.proto @@ -142,7 +142,7 @@ message VmExtensionPolicyList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_177.proto b/protos/google/cloud/compute/v1/internal/common_177.proto index 38f22d13e2fb7..97c0683aacf78 100644 --- a/protos/google/cloud/compute/v1/internal/common_177.proto +++ b/protos/google/cloud/compute/v1/internal/common_177.proto @@ -214,7 +214,7 @@ message VpnGatewayAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -344,7 +344,7 @@ message VpnGatewayList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -586,7 +586,7 @@ message VpnGatewaysScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_178.proto b/protos/google/cloud/compute/v1/internal/common_178.proto index 306e32cef4fa4..6f9c8078a0ae2 100644 --- a/protos/google/cloud/compute/v1/internal/common_178.proto +++ b/protos/google/cloud/compute/v1/internal/common_178.proto @@ -322,7 +322,7 @@ message VpnTunnelAggregatedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -458,7 +458,7 @@ message VpnTunnelList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; @@ -606,7 +606,7 @@ message VpnTunnelsScopedList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"]; diff --git a/protos/google/cloud/compute/v1/internal/common_179.proto b/protos/google/cloud/compute/v1/internal/common_179.proto index 4637a3e59c7d5..9e55054a7c96b 100644 --- a/protos/google/cloud/compute/v1/internal/common_179.proto +++ b/protos/google/cloud/compute/v1/internal/common_179.proto @@ -275,7 +275,7 @@ message WireGroupList { // warning about invalid network settings (for example, if an instance // attempts to perform IP forwarding but is not enabled for IP // forwarding). - optional string key = 1 [json_name = "key"]; + optional string key = 1 [debug_redact = true, json_name = "key"]; // [Output Only] A warning data value corresponding to the key. optional string value = 2 [json_name = "value"];