Class: Google::Apis::ApphubV1alpha::Environment
- Inherits:
-
Object
- Object
- Google::Apis::ApphubV1alpha::Environment
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apphub_v1alpha/classes.rb,
lib/google/apis/apphub_v1alpha/representations.rb,
lib/google/apis/apphub_v1alpha/representations.rb
Overview
Environment of the Application, Service, or Workload
Instance Attribute Summary collapse
-
#environment ⇒ String
Optional.
-
#type ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Environment
constructor
A new instance of Environment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Environment
Returns a new instance of Environment.
668 669 670 |
# File 'lib/google/apis/apphub_v1alpha/classes.rb', line 668 def initialize(**args) update!(**args) end |
Instance Attribute Details
#environment ⇒ String
Optional. Environment name. Can contain only lowercase letters, numeric
characters, underscores, and dashes. Can have a maximum length of 63
characters. Deprecated: Please refer to type instead.
Corresponds to the JSON property environment
661 662 663 |
# File 'lib/google/apis/apphub_v1alpha/classes.rb', line 661 def environment @environment end |
#type ⇒ String
Required. Environment Type.
Corresponds to the JSON property type
666 667 668 |
# File 'lib/google/apis/apphub_v1alpha/classes.rb', line 666 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
673 674 675 676 |
# File 'lib/google/apis/apphub_v1alpha/classes.rb', line 673 def update!(**args) @environment = args[:environment] if args.key?(:environment) @type = args[:type] if args.key?(:type) end |