Class: Google::Apis::CloudiotV1::HttpConfig
- Inherits:
-
Object
- Object
- Google::Apis::CloudiotV1::HttpConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudiot_v1/classes.rb,
lib/google/apis/cloudiot_v1/representations.rb,
lib/google/apis/cloudiot_v1/representations.rb
Overview
The configuration of the HTTP bridge for a device registry.
Instance Attribute Summary collapse
-
#http_enabled_state ⇒ String
If enabled, allows devices to use DeviceService via the HTTP protocol.
Instance Method Summary collapse
-
#initialize(**args) ⇒ HttpConfig
constructor
A new instance of HttpConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ HttpConfig
Returns a new instance of HttpConfig.
665 666 667 |
# File 'lib/google/apis/cloudiot_v1/classes.rb', line 665 def initialize(**args) update!(**args) end |
Instance Attribute Details
#http_enabled_state ⇒ String
If enabled, allows devices to use DeviceService via the HTTP protocol.
Otherwise, any requests to DeviceService will fail for this registry.
Corresponds to the JSON property httpEnabledState
663 664 665 |
# File 'lib/google/apis/cloudiot_v1/classes.rb', line 663 def http_enabled_state @http_enabled_state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
670 671 672 |
# File 'lib/google/apis/cloudiot_v1/classes.rb', line 670 def update!(**args) @http_enabled_state = args[:http_enabled_state] if args.key?(:http_enabled_state) end |