Class: Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::WebproxySettings
- Inherits:
-
Object
- Object
- Azure::StorSimple8000Series::Mgmt::V2017_06_01::Models::WebproxySettings
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/webproxy_settings.rb
Overview
The web proxy settings on the device.
Instance Attribute Summary collapse
-
#authentication ⇒ AuthenticationType
include: ‘Invalid’, ‘None’, ‘Basic’, ‘NTLM’.
-
#connection_uri ⇒ String
The connection URI.
-
#username ⇒ String
The webproxy username.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for WebproxySettings class as Ruby Hash.
Instance Attribute Details
#authentication ⇒ AuthenticationType
include: ‘Invalid’, ‘None’, ‘Basic’, ‘NTLM’
20 21 22 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/webproxy_settings.rb', line 20 def authentication @authentication end |
#connection_uri ⇒ String
Returns The connection URI.
16 17 18 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/webproxy_settings.rb', line 16 def connection_uri @connection_uri end |
#username ⇒ String
Returns The webproxy username.
23 24 25 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/webproxy_settings.rb', line 23 def username @username end |
Class Method Details
.mapper ⇒ Object
Mapper for WebproxySettings class as Ruby Hash. This will be used for serialization/deserialization.
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/models/webproxy_settings.rb', line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'WebproxySettings', type: { name: 'Composite', class_name: 'WebproxySettings', model_properties: { connection_uri: { client_side_validation: true, required: false, serialized_name: 'connectionUri', type: { name: 'String' } }, authentication: { client_side_validation: true, required: true, serialized_name: 'authentication', type: { name: 'Enum', module: 'AuthenticationType' } }, username: { client_side_validation: true, required: true, serialized_name: 'username', type: { name: 'String' } } } } } end |