Class: Azure::Web::Mgmt::V2016_06_01::Models::ApiConnectionTestLink
- Inherits:
-
Object
- Object
- Azure::Web::Mgmt::V2016_06_01::Models::ApiConnectionTestLink
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-06-01/generated/azure_mgmt_web/models/api_connection_test_link.rb
Overview
API connection properties
Instance Attribute Summary collapse
-
#method ⇒ String
HTTP Method.
-
#request_uri ⇒ String
Test link request URI.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ApiConnectionTestLink class as Ruby Hash.
Instance Attribute Details
#method ⇒ String
Returns HTTP Method.
19 20 21 |
# File 'lib/2016-06-01/generated/azure_mgmt_web/models/api_connection_test_link.rb', line 19 def method @method end |
#request_uri ⇒ String
Returns Test link request URI.
16 17 18 |
# File 'lib/2016-06-01/generated/azure_mgmt_web/models/api_connection_test_link.rb', line 16 def request_uri @request_uri end |
Class Method Details
.mapper ⇒ Object
Mapper for ApiConnectionTestLink class as Ruby Hash. This will be used for serialization/deserialization.
26 27 28 29 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 |
# File 'lib/2016-06-01/generated/azure_mgmt_web/models/api_connection_test_link.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApiConnectionTestLink', type: { name: 'Composite', class_name: 'ApiConnectionTestLink', model_properties: { request_uri: { client_side_validation: true, required: false, serialized_name: 'requestUri', type: { name: 'String' } }, method: { client_side_validation: true, required: false, serialized_name: 'method', type: { name: 'String' } } } } } end |