Class: Google::Apis::RunV1alpha1::Addressable

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/run_v1alpha1/classes.rb,
generated/google/apis/run_v1alpha1/representations.rb,
generated/google/apis/run_v1alpha1/representations.rb

Overview

Information for connecting over HTTP(s).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Addressable

Returns a new instance of Addressable.



39
40
41
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 39

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

Instance Attribute Details

#hostnameString

Deprecated - use url instead. Corresponds to the JSON property hostname

Returns:

  • (String)


32
33
34
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 32

def hostname
  @hostname
end

#urlString

Corresponds to the JSON property url

Returns:

  • (String)


37
38
39
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 37

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



44
45
46
47
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 44

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