Class: Google::Apis::RunV1alpha1::Addressable
- Inherits:
-
Object
- Object
- Google::Apis::RunV1alpha1::Addressable
- 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
-
#hostname ⇒ String
Deprecated - use url instead.
-
#url ⇒ String
Corresponds to the JSON property
url
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Addressable
constructor
A new instance of Addressable.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#hostname ⇒ String
Deprecated - use url instead.
Corresponds to the JSON property hostname
32 33 34 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 32 def hostname @hostname end |
#url ⇒ String
Corresponds to the JSON property url
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 |