Class: Google::Cloud::AppHub::V1::Criticality

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/apphub/v1/attributes.rb

Overview

Criticality of the Application, Service, or Workload

Defined Under Namespace

Modules: Type

Instance Attribute Summary collapse

Instance Attribute Details

#type::Google::Cloud::AppHub::V1::Criticality::Type

Returns Required. Criticality Type.

Returns:



50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'proto_docs/google/cloud/apphub/v1/attributes.rb', line 50

class Criticality
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Criticality Type.
  module Type
    # Unspecified type.
    TYPE_UNSPECIFIED = 0

    # Mission critical service, application or workload.
    MISSION_CRITICAL = 1

    # High impact.
    HIGH = 2

    # Medium impact.
    MEDIUM = 3

    # Low impact.
    LOW = 4
  end
end