Class: Google::Cloud::AppHub::V1::Environment
- Inherits:
-
Object
- Object
- Google::Cloud::AppHub::V1::Environment
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/apphub/v1/attributes.rb
Overview
Environment of the Application, Service, or Workload
Defined Under Namespace
Modules: Type
Instance Attribute Summary collapse
Instance Attribute Details
#type ⇒ ::Google::Cloud::AppHub::V1::Environment::Type
Returns Required. Environment Type.
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
# File 'proto_docs/google/cloud/apphub/v1/attributes.rb', line 77 class Environment include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Environment Type. module Type # Unspecified type. TYPE_UNSPECIFIED = 0 # Production environment. PRODUCTION = 1 # Staging environment. STAGING = 2 # Test environment. TEST = 3 # Development environment. DEVELOPMENT = 4 end end |