Class: Google::Apis::ApphubV1alpha::Environment

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Environment

Returns a new instance of Environment.



538
539
540
# File 'lib/google/apis/apphub_v1alpha/classes.rb', line 538

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#environmentString

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

Returns:

  • (String)


531
532
533
# File 'lib/google/apis/apphub_v1alpha/classes.rb', line 531

def environment
  @environment
end

#typeString

Required. Environment Type. Corresponds to the JSON property type

Returns:

  • (String)


536
537
538
# File 'lib/google/apis/apphub_v1alpha/classes.rb', line 536

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



543
544
545
546
# File 'lib/google/apis/apphub_v1alpha/classes.rb', line 543

def update!(**args)
  @environment = args[:environment] if args.key?(:environment)
  @type = args[:type] if args.key?(:type)
end