Class: Azure::ApiManagement::Mgmt::V2018_06_01_preview::Models::OperationTagResourceContractProperties
- Inherits:
-
Object
- Object
- Azure::ApiManagement::Mgmt::V2018_06_01_preview::Models::OperationTagResourceContractProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/operation_tag_resource_contract_properties.rb
Overview
Operation Entity contract Properties.
Instance Attribute Summary collapse
-
#api_name ⇒ String
Api Name.
-
#api_revision ⇒ String
Api Revision.
-
#api_version ⇒ String
Api Version.
-
#description ⇒ String
Operation Description.
-
#id ⇒ String
/operations/operationId.
-
#method ⇒ String
like GET, PUT, POST but not limited by only them.
-
#name ⇒ String
Operation name.
-
#url_template ⇒ String
for this operation.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for OperationTagResourceContractProperties class as Ruby Hash.
Instance Attribute Details
#api_name ⇒ String
Returns Api Name.
23 24 25 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/operation_tag_resource_contract_properties.rb', line 23 def api_name @api_name end |
#api_revision ⇒ String
Returns Api Revision.
26 27 28 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/operation_tag_resource_contract_properties.rb', line 26 def api_revision @api_revision end |
#api_version ⇒ String
Returns Api Version.
29 30 31 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/operation_tag_resource_contract_properties.rb', line 29 def api_version @api_version end |
#description ⇒ String
Returns Operation Description.
32 33 34 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/operation_tag_resource_contract_properties.rb', line 32 def description @description end |
#id ⇒ String
/operations/operationId.
17 18 19 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/operation_tag_resource_contract_properties.rb', line 17 def id @id end |
#method ⇒ String
like GET, PUT, POST but not limited by only them.
36 37 38 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/operation_tag_resource_contract_properties.rb', line 36 def method @method end |
#name ⇒ String
Returns Operation name.
20 21 22 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/operation_tag_resource_contract_properties.rb', line 20 def name @name end |
#url_template ⇒ String
for this operation. May include parameters. Example: /customers/cid/orders/oid/?date=date
41 42 43 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/operation_tag_resource_contract_properties.rb', line 41 def url_template @url_template end |
Class Method Details
.mapper ⇒ Object
Mapper for OperationTagResourceContractProperties class as Ruby Hash. This will be used for serialization/deserialization.
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_api_management/models/operation_tag_resource_contract_properties.rb', line 48 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'OperationTagResourceContractProperties', type: { name: 'Composite', class_name: 'OperationTagResourceContractProperties', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, api_name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'apiName', type: { name: 'String' } }, api_revision: { client_side_validation: true, required: false, read_only: true, serialized_name: 'apiRevision', type: { name: 'String' } }, api_version: { client_side_validation: true, required: false, read_only: true, serialized_name: 'apiVersion', type: { name: 'String' } }, description: { client_side_validation: true, required: false, read_only: true, serialized_name: 'description', type: { name: 'String' } }, method: { client_side_validation: true, required: false, read_only: true, serialized_name: 'method', type: { name: 'String' } }, url_template: { client_side_validation: true, required: false, read_only: true, serialized_name: 'urlTemplate', type: { name: 'String' } } } } } end |