Class: Google::Cloud::NetworkManagement::V1::AbortInfo

Inherits:
Object
  • Object
show all
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

Instance Attribute Details

#cause::Google::Cloud::NetworkManagement::V1::AbortInfo::Cause

Returns Causes that the analysis is aborted.

Returns:



961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
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
# File 'proto_docs/google/cloud/networkmanagement/v1/trace.rb', line 961

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

Returns:

  • (::String)

    IP address that caused the abort.



961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
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
# File 'proto_docs/google/cloud/networkmanagement/v1/trace.rb', line 961

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

Returns:

  • (::Array<::String>)

    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.



961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
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
# File 'proto_docs/google/cloud/networkmanagement/v1/trace.rb', line 961

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

Returns:

  • (::String)

    URI of the resource that caused the abort.



961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
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
# File 'proto_docs/google/cloud/networkmanagement/v1/trace.rb', line 961

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 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 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 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