Class: Google::Cloud::NetworkManagement::V1::AbortInfo
- Inherits:
-
Object
- Object
- Google::Cloud::NetworkManagement::V1::AbortInfo
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/networkmanagement/v1/trace.rb
Overview
Details of the final state "abort" and associated resource.
Defined Under Namespace
Modules: Cause
Instance Attribute Summary collapse
-
#cause ⇒ ::Google::Cloud::NetworkManagement::V1::AbortInfo::Cause
Causes that the analysis is aborted.
-
#ip_address ⇒ ::String
IP address that caused the abort.
-
#projects_missing_permission ⇒ ::Array<::String>
List of project IDs the user specified in the request but lacks access to.
-
#resource_uri ⇒ ::String
URI of the resource that caused the abort.
Instance Attribute Details
#cause ⇒ ::Google::Cloud::NetworkManagement::V1::AbortInfo::Cause
Returns Causes that the analysis is aborted.
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 |
# File 'proto_docs/google/cloud/networkmanagement/v1/trace.rb', line 1044 class AbortInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Abort cause types: module Cause # Cause is unspecified. CAUSE_UNSPECIFIED = 0 # Aborted due to unknown network. Deprecated, not used in the new tests. UNKNOWN_NETWORK = 1 # Aborted because no project information can be derived from the test # input. Deprecated, not used in the new tests. UNKNOWN_PROJECT = 3 # Aborted because traffic is sent from a public IP to an instance without # an external IP. Deprecated, not used in the new tests. NO_EXTERNAL_IP = 7 # Aborted because none of the traces matches destination information # specified in the input test request. Deprecated, not used in the new # tests. UNINTENDED_DESTINATION = 8 # Aborted because the source endpoint could not be found. Deprecated, not # used in the new tests. SOURCE_ENDPOINT_NOT_FOUND = 11 # Aborted because the source network does not match the source endpoint. # Deprecated, not used in the new tests. MISMATCHED_SOURCE_NETWORK = 12 # Aborted because the destination endpoint could not be found. Deprecated, # not used in the new tests. DESTINATION_ENDPOINT_NOT_FOUND = 13 # Aborted because the destination network does not match the destination # endpoint. Deprecated, not used in the new tests. MISMATCHED_DESTINATION_NETWORK = 14 # Aborted because no endpoint with the packet's destination IP address is # found. UNKNOWN_IP = 2 # Aborted because no endpoint with the packet's destination IP is found in # the Google-managed project. GOOGLE_MANAGED_SERVICE_UNKNOWN_IP = 32 # Aborted because the source IP address doesn't belong to any of the # subnets of the source VPC network. SOURCE_IP_ADDRESS_NOT_IN_SOURCE_NETWORK = 23 # Aborted because user lacks permission to access all or part of the # network configurations required to run the test. PERMISSION_DENIED = 4 # Aborted because user lacks permission to access Cloud NAT configs # required to run the test. PERMISSION_DENIED_NO_CLOUD_NAT_CONFIGS = 28 # Aborted because user lacks permission to access Network endpoint group # endpoint configs required to run the test. PERMISSION_DENIED_NO_NEG_ENDPOINT_CONFIGS = 29 # Aborted because user lacks permission to access Cloud Router configs # required to run the test. PERMISSION_DENIED_NO_CLOUD_ROUTER_CONFIGS = 36 # Aborted because no valid source or destination endpoint is derived from # the input test request. NO_SOURCE_LOCATION = 5 # Aborted because the source or destination endpoint specified in # the request is invalid. Some examples: # - The request might contain malformed resource URI, project ID, or IP # address. # - The request might contain inconsistent information (for example, the # request might include both the instance and the network, but the instance # might not have a NIC in that network). INVALID_ARGUMENT = 6 # Aborted because the number of steps in the trace exceeds a certain # limit. It might be caused by a routing loop. TRACE_TOO_LONG = 9 # Aborted due to internal server error. INTERNAL_ERROR = 10 # Aborted because the test scenario is not supported. UNSUPPORTED = 15 # Aborted because the source and destination resources have no common IP # version. MISMATCHED_IP_VERSION = 16 # Aborted because the connection between the control plane and the node of # the source cluster is initiated by the node and managed by the # Konnectivity proxy. GKE_KONNECTIVITY_PROXY_UNSUPPORTED = 17 # Aborted because expected resource configuration was missing. RESOURCE_CONFIG_NOT_FOUND = 18 # Aborted because expected VM instance configuration was missing. VM_INSTANCE_CONFIG_NOT_FOUND = 24 # Aborted because expected network configuration was missing. NETWORK_CONFIG_NOT_FOUND = 25 # Aborted because expected firewall configuration was missing. FIREWALL_CONFIG_NOT_FOUND = 26 # Aborted because expected route configuration was missing. ROUTE_CONFIG_NOT_FOUND = 27 # Aborted because a PSC endpoint selection for the Google-managed service # is ambiguous (several PSC endpoints satisfy test input). GOOGLE_MANAGED_SERVICE_AMBIGUOUS_PSC_ENDPOINT = 19 # Aborted because tests with a PSC-based Cloud SQL instance as a source are # not supported. SOURCE_PSC_CLOUD_SQL_UNSUPPORTED = 20 # Aborted because tests with a Redis Cluster as a source are not supported. SOURCE_REDIS_CLUSTER_UNSUPPORTED = 34 # Aborted because tests with a Redis Instance as a source are not # supported. SOURCE_REDIS_INSTANCE_UNSUPPORTED = 35 # Aborted because tests with a forwarding rule as a source are not # supported. SOURCE_FORWARDING_RULE_UNSUPPORTED = 21 # Aborted because one of the endpoints is a non-routable IP address # (loopback, link-local, etc). NON_ROUTABLE_IP_ADDRESS = 22 # Aborted due to an unknown issue in the Google-managed project. UNKNOWN_ISSUE_IN_GOOGLE_MANAGED_PROJECT = 30 # Aborted due to an unsupported configuration of the Google-managed # project. UNSUPPORTED_GOOGLE_MANAGED_PROJECT_CONFIG = 31 end end |
#ip_address ⇒ ::String
Returns IP address that caused the abort.
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 |
# File 'proto_docs/google/cloud/networkmanagement/v1/trace.rb', line 1044 class AbortInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Abort cause types: module Cause # Cause is unspecified. CAUSE_UNSPECIFIED = 0 # Aborted due to unknown network. Deprecated, not used in the new tests. UNKNOWN_NETWORK = 1 # Aborted because no project information can be derived from the test # input. Deprecated, not used in the new tests. UNKNOWN_PROJECT = 3 # Aborted because traffic is sent from a public IP to an instance without # an external IP. Deprecated, not used in the new tests. NO_EXTERNAL_IP = 7 # Aborted because none of the traces matches destination information # specified in the input test request. Deprecated, not used in the new # tests. UNINTENDED_DESTINATION = 8 # Aborted because the source endpoint could not be found. Deprecated, not # used in the new tests. SOURCE_ENDPOINT_NOT_FOUND = 11 # Aborted because the source network does not match the source endpoint. # Deprecated, not used in the new tests. MISMATCHED_SOURCE_NETWORK = 12 # Aborted because the destination endpoint could not be found. Deprecated, # not used in the new tests. DESTINATION_ENDPOINT_NOT_FOUND = 13 # Aborted because the destination network does not match the destination # endpoint. Deprecated, not used in the new tests. MISMATCHED_DESTINATION_NETWORK = 14 # Aborted because no endpoint with the packet's destination IP address is # found. UNKNOWN_IP = 2 # Aborted because no endpoint with the packet's destination IP is found in # the Google-managed project. GOOGLE_MANAGED_SERVICE_UNKNOWN_IP = 32 # Aborted because the source IP address doesn't belong to any of the # subnets of the source VPC network. SOURCE_IP_ADDRESS_NOT_IN_SOURCE_NETWORK = 23 # Aborted because user lacks permission to access all or part of the # network configurations required to run the test. PERMISSION_DENIED = 4 # Aborted because user lacks permission to access Cloud NAT configs # required to run the test. PERMISSION_DENIED_NO_CLOUD_NAT_CONFIGS = 28 # Aborted because user lacks permission to access Network endpoint group # endpoint configs required to run the test. PERMISSION_DENIED_NO_NEG_ENDPOINT_CONFIGS = 29 # Aborted because user lacks permission to access Cloud Router configs # required to run the test. PERMISSION_DENIED_NO_CLOUD_ROUTER_CONFIGS = 36 # Aborted because no valid source or destination endpoint is derived from # the input test request. NO_SOURCE_LOCATION = 5 # Aborted because the source or destination endpoint specified in # the request is invalid. Some examples: # - The request might contain malformed resource URI, project ID, or IP # address. # - The request might contain inconsistent information (for example, the # request might include both the instance and the network, but the instance # might not have a NIC in that network). INVALID_ARGUMENT = 6 # Aborted because the number of steps in the trace exceeds a certain # limit. It might be caused by a routing loop. TRACE_TOO_LONG = 9 # Aborted due to internal server error. INTERNAL_ERROR = 10 # Aborted because the test scenario is not supported. UNSUPPORTED = 15 # Aborted because the source and destination resources have no common IP # version. MISMATCHED_IP_VERSION = 16 # Aborted because the connection between the control plane and the node of # the source cluster is initiated by the node and managed by the # Konnectivity proxy. GKE_KONNECTIVITY_PROXY_UNSUPPORTED = 17 # Aborted because expected resource configuration was missing. RESOURCE_CONFIG_NOT_FOUND = 18 # Aborted because expected VM instance configuration was missing. VM_INSTANCE_CONFIG_NOT_FOUND = 24 # Aborted because expected network configuration was missing. NETWORK_CONFIG_NOT_FOUND = 25 # Aborted because expected firewall configuration was missing. FIREWALL_CONFIG_NOT_FOUND = 26 # Aborted because expected route configuration was missing. ROUTE_CONFIG_NOT_FOUND = 27 # Aborted because a PSC endpoint selection for the Google-managed service # is ambiguous (several PSC endpoints satisfy test input). GOOGLE_MANAGED_SERVICE_AMBIGUOUS_PSC_ENDPOINT = 19 # Aborted because tests with a PSC-based Cloud SQL instance as a source are # not supported. SOURCE_PSC_CLOUD_SQL_UNSUPPORTED = 20 # Aborted because tests with a Redis Cluster as a source are not supported. SOURCE_REDIS_CLUSTER_UNSUPPORTED = 34 # Aborted because tests with a Redis Instance as a source are not # supported. SOURCE_REDIS_INSTANCE_UNSUPPORTED = 35 # Aborted because tests with a forwarding rule as a source are not # supported. SOURCE_FORWARDING_RULE_UNSUPPORTED = 21 # Aborted because one of the endpoints is a non-routable IP address # (loopback, link-local, etc). NON_ROUTABLE_IP_ADDRESS = 22 # Aborted due to an unknown issue in the Google-managed project. UNKNOWN_ISSUE_IN_GOOGLE_MANAGED_PROJECT = 30 # Aborted due to an unsupported configuration of the Google-managed # project. UNSUPPORTED_GOOGLE_MANAGED_PROJECT_CONFIG = 31 end end |
#projects_missing_permission ⇒ ::Array<::String>
Returns List of project IDs the user specified in the request but lacks access to. In this case, analysis is aborted with the PERMISSION_DENIED cause.
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 |
# File 'proto_docs/google/cloud/networkmanagement/v1/trace.rb', line 1044 class AbortInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Abort cause types: module Cause # Cause is unspecified. CAUSE_UNSPECIFIED = 0 # Aborted due to unknown network. Deprecated, not used in the new tests. UNKNOWN_NETWORK = 1 # Aborted because no project information can be derived from the test # input. Deprecated, not used in the new tests. UNKNOWN_PROJECT = 3 # Aborted because traffic is sent from a public IP to an instance without # an external IP. Deprecated, not used in the new tests. NO_EXTERNAL_IP = 7 # Aborted because none of the traces matches destination information # specified in the input test request. Deprecated, not used in the new # tests. UNINTENDED_DESTINATION = 8 # Aborted because the source endpoint could not be found. Deprecated, not # used in the new tests. SOURCE_ENDPOINT_NOT_FOUND = 11 # Aborted because the source network does not match the source endpoint. # Deprecated, not used in the new tests. MISMATCHED_SOURCE_NETWORK = 12 # Aborted because the destination endpoint could not be found. Deprecated, # not used in the new tests. DESTINATION_ENDPOINT_NOT_FOUND = 13 # Aborted because the destination network does not match the destination # endpoint. Deprecated, not used in the new tests. MISMATCHED_DESTINATION_NETWORK = 14 # Aborted because no endpoint with the packet's destination IP address is # found. UNKNOWN_IP = 2 # Aborted because no endpoint with the packet's destination IP is found in # the Google-managed project. GOOGLE_MANAGED_SERVICE_UNKNOWN_IP = 32 # Aborted because the source IP address doesn't belong to any of the # subnets of the source VPC network. SOURCE_IP_ADDRESS_NOT_IN_SOURCE_NETWORK = 23 # Aborted because user lacks permission to access all or part of the # network configurations required to run the test. PERMISSION_DENIED = 4 # Aborted because user lacks permission to access Cloud NAT configs # required to run the test. PERMISSION_DENIED_NO_CLOUD_NAT_CONFIGS = 28 # Aborted because user lacks permission to access Network endpoint group # endpoint configs required to run the test. PERMISSION_DENIED_NO_NEG_ENDPOINT_CONFIGS = 29 # Aborted because user lacks permission to access Cloud Router configs # required to run the test. PERMISSION_DENIED_NO_CLOUD_ROUTER_CONFIGS = 36 # Aborted because no valid source or destination endpoint is derived from # the input test request. NO_SOURCE_LOCATION = 5 # Aborted because the source or destination endpoint specified in # the request is invalid. Some examples: # - The request might contain malformed resource URI, project ID, or IP # address. # - The request might contain inconsistent information (for example, the # request might include both the instance and the network, but the instance # might not have a NIC in that network). INVALID_ARGUMENT = 6 # Aborted because the number of steps in the trace exceeds a certain # limit. It might be caused by a routing loop. TRACE_TOO_LONG = 9 # Aborted due to internal server error. INTERNAL_ERROR = 10 # Aborted because the test scenario is not supported. UNSUPPORTED = 15 # Aborted because the source and destination resources have no common IP # version. MISMATCHED_IP_VERSION = 16 # Aborted because the connection between the control plane and the node of # the source cluster is initiated by the node and managed by the # Konnectivity proxy. GKE_KONNECTIVITY_PROXY_UNSUPPORTED = 17 # Aborted because expected resource configuration was missing. RESOURCE_CONFIG_NOT_FOUND = 18 # Aborted because expected VM instance configuration was missing. VM_INSTANCE_CONFIG_NOT_FOUND = 24 # Aborted because expected network configuration was missing. NETWORK_CONFIG_NOT_FOUND = 25 # Aborted because expected firewall configuration was missing. FIREWALL_CONFIG_NOT_FOUND = 26 # Aborted because expected route configuration was missing. ROUTE_CONFIG_NOT_FOUND = 27 # Aborted because a PSC endpoint selection for the Google-managed service # is ambiguous (several PSC endpoints satisfy test input). GOOGLE_MANAGED_SERVICE_AMBIGUOUS_PSC_ENDPOINT = 19 # Aborted because tests with a PSC-based Cloud SQL instance as a source are # not supported. SOURCE_PSC_CLOUD_SQL_UNSUPPORTED = 20 # Aborted because tests with a Redis Cluster as a source are not supported. SOURCE_REDIS_CLUSTER_UNSUPPORTED = 34 # Aborted because tests with a Redis Instance as a source are not # supported. SOURCE_REDIS_INSTANCE_UNSUPPORTED = 35 # Aborted because tests with a forwarding rule as a source are not # supported. SOURCE_FORWARDING_RULE_UNSUPPORTED = 21 # Aborted because one of the endpoints is a non-routable IP address # (loopback, link-local, etc). NON_ROUTABLE_IP_ADDRESS = 22 # Aborted due to an unknown issue in the Google-managed project. UNKNOWN_ISSUE_IN_GOOGLE_MANAGED_PROJECT = 30 # Aborted due to an unsupported configuration of the Google-managed # project. UNSUPPORTED_GOOGLE_MANAGED_PROJECT_CONFIG = 31 end end |
#resource_uri ⇒ ::String
Returns URI of the resource that caused the abort.
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 |
# File 'proto_docs/google/cloud/networkmanagement/v1/trace.rb', line 1044 class AbortInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Abort cause types: module Cause # Cause is unspecified. CAUSE_UNSPECIFIED = 0 # Aborted due to unknown network. Deprecated, not used in the new tests. UNKNOWN_NETWORK = 1 # Aborted because no project information can be derived from the test # input. Deprecated, not used in the new tests. UNKNOWN_PROJECT = 3 # Aborted because traffic is sent from a public IP to an instance without # an external IP. Deprecated, not used in the new tests. NO_EXTERNAL_IP = 7 # Aborted because none of the traces matches destination information # specified in the input test request. Deprecated, not used in the new # tests. UNINTENDED_DESTINATION = 8 # Aborted because the source endpoint could not be found. Deprecated, not # used in the new tests. SOURCE_ENDPOINT_NOT_FOUND = 11 # Aborted because the source network does not match the source endpoint. # Deprecated, not used in the new tests. MISMATCHED_SOURCE_NETWORK = 12 # Aborted because the destination endpoint could not be found. Deprecated, # not used in the new tests. DESTINATION_ENDPOINT_NOT_FOUND = 13 # Aborted because the destination network does not match the destination # endpoint. Deprecated, not used in the new tests. MISMATCHED_DESTINATION_NETWORK = 14 # Aborted because no endpoint with the packet's destination IP address is # found. UNKNOWN_IP = 2 # Aborted because no endpoint with the packet's destination IP is found in # the Google-managed project. GOOGLE_MANAGED_SERVICE_UNKNOWN_IP = 32 # Aborted because the source IP address doesn't belong to any of the # subnets of the source VPC network. SOURCE_IP_ADDRESS_NOT_IN_SOURCE_NETWORK = 23 # Aborted because user lacks permission to access all or part of the # network configurations required to run the test. PERMISSION_DENIED = 4 # Aborted because user lacks permission to access Cloud NAT configs # required to run the test. PERMISSION_DENIED_NO_CLOUD_NAT_CONFIGS = 28 # Aborted because user lacks permission to access Network endpoint group # endpoint configs required to run the test. PERMISSION_DENIED_NO_NEG_ENDPOINT_CONFIGS = 29 # Aborted because user lacks permission to access Cloud Router configs # required to run the test. PERMISSION_DENIED_NO_CLOUD_ROUTER_CONFIGS = 36 # Aborted because no valid source or destination endpoint is derived from # the input test request. NO_SOURCE_LOCATION = 5 # Aborted because the source or destination endpoint specified in # the request is invalid. Some examples: # - The request might contain malformed resource URI, project ID, or IP # address. # - The request might contain inconsistent information (for example, the # request might include both the instance and the network, but the instance # might not have a NIC in that network). INVALID_ARGUMENT = 6 # Aborted because the number of steps in the trace exceeds a certain # limit. It might be caused by a routing loop. TRACE_TOO_LONG = 9 # Aborted due to internal server error. INTERNAL_ERROR = 10 # Aborted because the test scenario is not supported. UNSUPPORTED = 15 # Aborted because the source and destination resources have no common IP # version. MISMATCHED_IP_VERSION = 16 # Aborted because the connection between the control plane and the node of # the source cluster is initiated by the node and managed by the # Konnectivity proxy. GKE_KONNECTIVITY_PROXY_UNSUPPORTED = 17 # Aborted because expected resource configuration was missing. RESOURCE_CONFIG_NOT_FOUND = 18 # Aborted because expected VM instance configuration was missing. VM_INSTANCE_CONFIG_NOT_FOUND = 24 # Aborted because expected network configuration was missing. NETWORK_CONFIG_NOT_FOUND = 25 # Aborted because expected firewall configuration was missing. FIREWALL_CONFIG_NOT_FOUND = 26 # Aborted because expected route configuration was missing. ROUTE_CONFIG_NOT_FOUND = 27 # Aborted because a PSC endpoint selection for the Google-managed service # is ambiguous (several PSC endpoints satisfy test input). GOOGLE_MANAGED_SERVICE_AMBIGUOUS_PSC_ENDPOINT = 19 # Aborted because tests with a PSC-based Cloud SQL instance as a source are # not supported. SOURCE_PSC_CLOUD_SQL_UNSUPPORTED = 20 # Aborted because tests with a Redis Cluster as a source are not supported. SOURCE_REDIS_CLUSTER_UNSUPPORTED = 34 # Aborted because tests with a Redis Instance as a source are not # supported. SOURCE_REDIS_INSTANCE_UNSUPPORTED = 35 # Aborted because tests with a forwarding rule as a source are not # supported. SOURCE_FORWARDING_RULE_UNSUPPORTED = 21 # Aborted because one of the endpoints is a non-routable IP address # (loopback, link-local, etc). NON_ROUTABLE_IP_ADDRESS = 22 # Aborted due to an unknown issue in the Google-managed project. UNKNOWN_ISSUE_IN_GOOGLE_MANAGED_PROJECT = 30 # Aborted due to an unsupported configuration of the Google-managed # project. UNSUPPORTED_GOOGLE_MANAGED_PROJECT_CONFIG = 31 end end |