Class: Azure::ApiManagement::Mgmt::V2016_10_10::Models::BackendContract
- Inherits:
-
BackendBaseParameters
- Object
- BackendBaseParameters
- Azure::ApiManagement::Mgmt::V2016_10_10::Models::BackendContract
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-10-10/generated/azure_mgmt_api_management/models/backend_contract.rb
Overview
Parameters supplied to the Create Backend operation.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#id ⇒ String
Management service instance.
-
#protocol ⇒ BackendProtocol
values include: ‘http’, ‘soap’.
Attributes inherited from BackendBaseParameters
#certificate, #description, #header, #password, #query, #resource_id, #skip_certificate_chain_validation, #skip_certificate_name_validation, #title, #url, #username
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for BackendContract class as Ruby Hash.
Instance Attribute Details
#id ⇒ String
Management service instance. The value is a valid relative URL in the format of /backends/backendId where backendId is a backend identifier.
19 20 21 |
# File 'lib/2016-10-10/generated/azure_mgmt_api_management/models/backend_contract.rb', line 19 def id @id end |
#protocol ⇒ BackendProtocol
values include: ‘http’, ‘soap’
23 24 25 |
# File 'lib/2016-10-10/generated/azure_mgmt_api_management/models/backend_contract.rb', line 23 def protocol @protocol end |
Class Method Details
.mapper ⇒ Object
Mapper for BackendContract 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 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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
# File 'lib/2016-10-10/generated/azure_mgmt_api_management/models/backend_contract.rb', line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'BackendContract', type: { name: 'Composite', class_name: 'BackendContract', model_properties: { certificate: { client_side_validation: true, required: false, serialized_name: 'certificate', constraints: { MaxItems: 32 }, type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, query: { client_side_validation: true, required: false, serialized_name: 'query', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'ArrayElementType', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } }, header: { client_side_validation: true, required: false, serialized_name: 'header', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'ArrayElementType', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } }, url: { client_side_validation: true, required: true, serialized_name: 'url', constraints: { MaxLength: 2000, MinLength: 1 }, type: { name: 'String' } }, username: { client_side_validation: true, required: false, serialized_name: 'username', type: { name: 'String' } }, password: { client_side_validation: true, required: false, serialized_name: 'password', type: { name: 'String' } }, title: { client_side_validation: true, required: false, serialized_name: 'title', constraints: { MaxLength: 300, MinLength: 1 }, type: { name: 'String' } }, description: { client_side_validation: true, required: false, serialized_name: 'description', constraints: { MaxLength: 2000, MinLength: 1 }, type: { name: 'String' } }, resource_id: { client_side_validation: true, required: false, serialized_name: 'resourceId', constraints: { MaxLength: 2000, MinLength: 1 }, type: { name: 'String' } }, skip_certificate_chain_validation: { client_side_validation: true, required: false, serialized_name: 'properties.skipCertificateChainValidation', default_value: false, type: { name: 'Boolean' } }, skip_certificate_name_validation: { client_side_validation: true, required: false, serialized_name: 'properties.skipCertificateNameValidation', default_value: false, type: { name: 'Boolean' } }, id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, protocol: { client_side_validation: true, required: true, serialized_name: 'protocol', type: { name: 'String' } } } } } end |