Class: BagKadasterClient::PandApi
- Inherits:
-
Object
- Object
- BagKadasterClient::PandApi
- Defined in:
- lib/bag_kadaster_client/api/pand_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#initialize(api_client = ApiClient.default) ⇒ PandApi
constructor
A new instance of PandApi.
-
#pand_geometrie(point, opts = {}) ⇒ PandIOHalCollection
bevragen panden met een geometrische locatie.
-
#pand_geometrie_with_http_info(point, opts = {}) ⇒ Array<(PandIOHalCollection, Integer, Hash)>
bevragen panden met een geometrische locatie.
-
#pand_identificatie(identificatie, opts = {}) ⇒ PandIOHal
bevragen van een pand met de identificatie van een pand.
-
#pand_identificatie_voorkomen(identificatie, versie, timestamp_registratie_lv, opts = {}) ⇒ PandIOHal
bevragen voorkomen van een pand met de identificatie van een pand en de identificatie van een voorkomen, bestaande uit een versie en een timestamp van het tijdstip van registratie in de LV BAG.
-
#pand_identificatie_voorkomen_with_http_info(identificatie, versie, timestamp_registratie_lv, opts = {}) ⇒ Array<(PandIOHal, Integer, Hash)>
bevragen voorkomen van een pand met de identificatie van een pand en de identificatie van een voorkomen, bestaande uit een versie en een timestamp van het tijdstip van registratie in de LV BAG.
-
#pand_identificatie_with_http_info(identificatie, opts = {}) ⇒ Array<(PandIOHal, Integer, Hash)>
bevragen van een pand met de identificatie van een pand.
-
#pand_lvc_identificatie(identificatie, opts = {}) ⇒ PandIOLvcHalCollection
bevragen levenscyclus van een pand met de identificatie van een pand.
-
#pand_lvc_identificatie_with_http_info(identificatie, opts = {}) ⇒ Array<(PandIOLvcHalCollection, Integer, Hash)>
bevragen levenscyclus van een pand met de identificatie van een pand.
Constructor Details
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/bag_kadaster_client/api/pand_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#pand_geometrie(point, opts = {}) ⇒ PandIOHalCollection
bevragen panden met een geometrische locatie. Bevragen/raadplegen van een voorkomen van één of meer panden met de geometrische locatie van het pand. Parameter huidig kan worden toegepast. Als geldigOp en/of beschikbaarOp niet wordt opgegeven, worden de actuele gegevens geleverd.
32 33 34 35 |
# File 'lib/bag_kadaster_client/api/pand_api.rb', line 32 def pand_geometrie(point, opts = {}) data, _status_code, _headers = pand_geometrie_with_http_info(point, opts) data end |
#pand_geometrie_with_http_info(point, opts = {}) ⇒ Array<(PandIOHalCollection, Integer, Hash)>
bevragen panden met een geometrische locatie. Bevragen/raadplegen van een voorkomen van één of meer panden met de geometrische locatie van het pand. Parameter huidig kan worden toegepast. Als geldigOp en/of beschikbaarOp niet wordt opgegeven, worden de actuele gegevens geleverd.
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 |
# File 'lib/bag_kadaster_client/api/pand_api.rb', line 47 def pand_geometrie_with_http_info(point, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: PandApi.pand_geometrie ...' end # verify the required parameter 'point' is set if @api_client.config.client_side_validation && point.nil? fail ArgumentError, "Missing the required parameter 'point' when calling PandApi.pand_geometrie" end allowable_values = ["epsg:28992"] if @api_client.config.client_side_validation && opts[:'content_crs'] && !allowable_values.include?(opts[:'content_crs']) fail ArgumentError, "invalid value for \"content_crs\", must be one of #{allowable_values}" end allowable_values = ["epsg:28992"] if @api_client.config.client_side_validation && opts[:'accept_crs'] && !allowable_values.include?(opts[:'accept_crs']) fail ArgumentError, "invalid value for \"accept_crs\", must be one of #{allowable_values}" end # resource path local_var_path = '/panden' # query parameters query_params = opts[:query_params] || {} query_params[:'geldigOp'] = opts[:'geldig_op'] if !opts[:'geldig_op'].nil? query_params[:'beschikbaarOp'] = opts[:'beschikbaar_op'] if !opts[:'beschikbaar_op'].nil? query_params[:'huidig'] = opts[:'huidig'] if !opts[:'huidig'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/hal+json', 'application/problem+json']) # HTTP header 'Content-Type' content_type = @api_client.select_header_content_type(['application/json']) if !content_type.nil? header_params['Content-Type'] = content_type end header_params[:'Content-Crs'] = opts[:'content_crs'] if !opts[:'content_crs'].nil? header_params[:'Accept-Crs'] = opts[:'accept_crs'] if !opts[:'accept_crs'].nil? # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] || @api_client.object_to_http_body(point) # return_type return_type = opts[:debug_return_type] || 'PandIOHalCollection' # auth_names auth_names = opts[:debug_auth_names] || ['apiKeyBAG'] = opts.merge( :operation => :"PandApi.pand_geometrie", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:POST, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: PandApi#pand_geometrie\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#pand_identificatie(identificatie, opts = {}) ⇒ PandIOHal
bevragen van een pand met de identificatie van een pand. Bevragen/raadplegen van een voorkomen van een pand met de identificatie van het pand. Als geldigOp en/of beschikbaarOp niet wordt opgegeven, worden de actuele gegevens geleverd.
121 122 123 124 |
# File 'lib/bag_kadaster_client/api/pand_api.rb', line 121 def pand_identificatie(identificatie, opts = {}) data, _status_code, _headers = pand_identificatie_with_http_info(identificatie, opts) data end |
#pand_identificatie_voorkomen(identificatie, versie, timestamp_registratie_lv, opts = {}) ⇒ PandIOHal
bevragen voorkomen van een pand met de identificatie van een pand en de identificatie van een voorkomen, bestaande uit een versie en een timestamp van het tijdstip van registratie in de LV BAG. Bevragen/raadplegen van een voorkomen van een pand met de identificatie van een pand en de identificatie van een voorkomen, bestaande uit een versie en een timestamp van het tijdstip van registratie in de LV BAG.
202 203 204 205 |
# File 'lib/bag_kadaster_client/api/pand_api.rb', line 202 def pand_identificatie_voorkomen(identificatie, versie, , opts = {}) data, _status_code, _headers = pand_identificatie_voorkomen_with_http_info(identificatie, versie, , opts) data end |
#pand_identificatie_voorkomen_with_http_info(identificatie, versie, timestamp_registratie_lv, opts = {}) ⇒ Array<(PandIOHal, Integer, Hash)>
bevragen voorkomen van een pand met de identificatie van een pand en de identificatie van een voorkomen, bestaande uit een versie en een timestamp van het tijdstip van registratie in de LV BAG. Bevragen/raadplegen van een voorkomen van een pand met de identificatie van een pand en de identificatie van een voorkomen, bestaande uit een versie en een timestamp van het tijdstip van registratie in de LV BAG.
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 |
# File 'lib/bag_kadaster_client/api/pand_api.rb', line 215 def pand_identificatie_voorkomen_with_http_info(identificatie, versie, , opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: PandApi.pand_identificatie_voorkomen ...' end # verify the required parameter 'identificatie' is set if @api_client.config.client_side_validation && identificatie.nil? fail ArgumentError, "Missing the required parameter 'identificatie' when calling PandApi.pand_identificatie_voorkomen" end pattern = Regexp.new(/^[0-9]{4}10[0-9]{10}$/) if @api_client.config.client_side_validation && identificatie !~ pattern fail ArgumentError, "invalid value for 'identificatie' when calling PandApi.pand_identificatie_voorkomen, must conform to the pattern #{pattern}." end # verify the required parameter 'versie' is set if @api_client.config.client_side_validation && versie.nil? fail ArgumentError, "Missing the required parameter 'versie' when calling PandApi.pand_identificatie_voorkomen" end # verify the required parameter 'timestamp_registratie_lv' is set if @api_client.config.client_side_validation && .nil? fail ArgumentError, "Missing the required parameter 'timestamp_registratie_lv' when calling PandApi.pand_identificatie_voorkomen" end pattern = Regexp.new(/^\d+$/) if @api_client.config.client_side_validation && !~ pattern fail ArgumentError, "invalid value for 'timestamp_registratie_lv' when calling PandApi.pand_identificatie_voorkomen, must conform to the pattern #{pattern}." end allowable_values = ["epsg:28992"] if @api_client.config.client_side_validation && opts[:'accept_crs'] && !allowable_values.include?(opts[:'accept_crs']) fail ArgumentError, "invalid value for \"accept_crs\", must be one of #{allowable_values}" end # resource path local_var_path = '/panden/{identificatie}/{versie}/{timestampRegistratieLv}'.sub('{' + 'identificatie' + '}', CGI.escape(identificatie.to_s)).sub('{' + 'versie' + '}', CGI.escape(versie.to_s)).sub('{' + 'timestampRegistratieLv' + '}', CGI.escape(.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/hal+json', 'application/problem+json']) header_params[:'Accept-Crs'] = opts[:'accept_crs'] if !opts[:'accept_crs'].nil? # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'PandIOHal' # auth_names auth_names = opts[:debug_auth_names] || ['apiKeyBAG'] = opts.merge( :operation => :"PandApi.pand_identificatie_voorkomen", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: PandApi#pand_identificatie_voorkomen\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#pand_identificatie_with_http_info(identificatie, opts = {}) ⇒ Array<(PandIOHal, Integer, Hash)>
bevragen van een pand met de identificatie van een pand. Bevragen/raadplegen van een voorkomen van een pand met de identificatie van het pand. Als geldigOp en/of beschikbaarOp niet wordt opgegeven, worden de actuele gegevens geleverd.
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 |
# File 'lib/bag_kadaster_client/api/pand_api.rb', line 134 def pand_identificatie_with_http_info(identificatie, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: PandApi.pand_identificatie ...' end # verify the required parameter 'identificatie' is set if @api_client.config.client_side_validation && identificatie.nil? fail ArgumentError, "Missing the required parameter 'identificatie' when calling PandApi.pand_identificatie" end pattern = Regexp.new(/^[0-9]{4}10[0-9]{10}$/) if @api_client.config.client_side_validation && identificatie !~ pattern fail ArgumentError, "invalid value for 'identificatie' when calling PandApi.pand_identificatie, must conform to the pattern #{pattern}." end allowable_values = ["epsg:28992"] if @api_client.config.client_side_validation && opts[:'accept_crs'] && !allowable_values.include?(opts[:'accept_crs']) fail ArgumentError, "invalid value for \"accept_crs\", must be one of #{allowable_values}" end # resource path local_var_path = '/panden/{identificatie}'.sub('{' + 'identificatie' + '}', CGI.escape(identificatie.to_s)) # query parameters query_params = opts[:query_params] || {} query_params[:'geldigOp'] = opts[:'geldig_op'] if !opts[:'geldig_op'].nil? query_params[:'beschikbaarOp'] = opts[:'beschikbaar_op'] if !opts[:'beschikbaar_op'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/hal+json', 'application/problem+json']) header_params[:'Accept-Crs'] = opts[:'accept_crs'] if !opts[:'accept_crs'].nil? # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'PandIOHal' # auth_names auth_names = opts[:debug_auth_names] || ['apiKeyBAG'] = opts.merge( :operation => :"PandApi.pand_identificatie", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: PandApi#pand_identificatie\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#pand_lvc_identificatie(identificatie, opts = {}) ⇒ PandIOLvcHalCollection
bevragen levenscyclus van een pand met de identificatie van een pand. Bevragen/raadplegen van de levenscyclus van een pand met de identificatie van een pand.
293 294 295 296 |
# File 'lib/bag_kadaster_client/api/pand_api.rb', line 293 def pand_lvc_identificatie(identificatie, opts = {}) data, _status_code, _headers = pand_lvc_identificatie_with_http_info(identificatie, opts) data end |
#pand_lvc_identificatie_with_http_info(identificatie, opts = {}) ⇒ Array<(PandIOLvcHalCollection, Integer, Hash)>
bevragen levenscyclus van een pand met de identificatie van een pand. Bevragen/raadplegen van de levenscyclus van een pand met de identificatie van een pand.
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'lib/bag_kadaster_client/api/pand_api.rb', line 305 def pand_lvc_identificatie_with_http_info(identificatie, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: PandApi.pand_lvc_identificatie ...' end # verify the required parameter 'identificatie' is set if @api_client.config.client_side_validation && identificatie.nil? fail ArgumentError, "Missing the required parameter 'identificatie' when calling PandApi.pand_lvc_identificatie" end pattern = Regexp.new(/^[0-9]{4}10[0-9]{10}$/) if @api_client.config.client_side_validation && identificatie !~ pattern fail ArgumentError, "invalid value for 'identificatie' when calling PandApi.pand_lvc_identificatie, must conform to the pattern #{pattern}." end allowable_values = ["epsg:28992"] if @api_client.config.client_side_validation && opts[:'accept_crs'] && !allowable_values.include?(opts[:'accept_crs']) fail ArgumentError, "invalid value for \"accept_crs\", must be one of #{allowable_values}" end # resource path local_var_path = '/panden/{identificatie}/lvc'.sub('{' + 'identificatie' + '}', CGI.escape(identificatie.to_s)) # query parameters query_params = opts[:query_params] || {} query_params[:'geheleLvc'] = opts[:'gehele_lvc'] if !opts[:'gehele_lvc'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/hal+json', 'application/problem+json']) header_params[:'Accept-Crs'] = opts[:'accept_crs'] if !opts[:'accept_crs'].nil? # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'PandIOLvcHalCollection' # auth_names auth_names = opts[:debug_auth_names] || ['apiKeyBAG'] = opts.merge( :operation => :"PandApi.pand_lvc_identificatie", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: PandApi#pand_lvc_identificatie\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |