Class: BagKadasterClient::StandplaatsApi
- Inherits:
-
Object
- Object
- BagKadasterClient::StandplaatsApi
- Defined in:
- lib/bag_kadaster_client/api/standplaats_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) ⇒ StandplaatsApi
constructor
A new instance of StandplaatsApi.
-
#standplaats_geometrie(point, opts = {}) ⇒ StandplaatsIOHalCollection
bevragen van een standplaats met een geometrische locatie.
-
#standplaats_geometrie_with_http_info(point, opts = {}) ⇒ Array<(StandplaatsIOHalCollection, Integer, Hash)>
bevragen van een standplaats met een geometrische locatie.
-
#standplaats_identificatie(identificatie, opts = {}) ⇒ StandplaatsIOHal
bevragen van een standplaats met de identificatie van een standplaats.
-
#standplaats_identificatie_voorkomen(identificatie, versie, timestamp_registratie_lv, opts = {}) ⇒ StandplaatsIOHal
bevragen van een voorkomen van een standplaats met de identificatie van een standplaats en de identificatie van een voorkomen, bestaande uit een versie en een timestamp van het tijdstip van registratie in de LV BAG.
-
#standplaats_identificatie_voorkomen_with_http_info(identificatie, versie, timestamp_registratie_lv, opts = {}) ⇒ Array<(StandplaatsIOHal, Integer, Hash)>
bevragen van een voorkomen van een standplaats met de identificatie van een standplaats en de identificatie van een voorkomen, bestaande uit een versie en een timestamp van het tijdstip van registratie in de LV BAG.
-
#standplaats_identificatie_with_http_info(identificatie, opts = {}) ⇒ Array<(StandplaatsIOHal, Integer, Hash)>
bevragen van een standplaats met de identificatie van een standplaats.
-
#standplaats_lvc_identificatie(identificatie, opts = {}) ⇒ StandplaatsIOLvcHalCollection
bevragen levenscyclus van een standplaats met de identificatie van een standplaats.
-
#standplaats_lvc_identificatie_with_http_info(identificatie, opts = {}) ⇒ Array<(StandplaatsIOLvcHalCollection, Integer, Hash)>
bevragen levenscyclus van een standplaats met de identificatie van een standplaats.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ StandplaatsApi
Returns a new instance of StandplaatsApi.
19 20 21 |
# File 'lib/bag_kadaster_client/api/standplaats_api.rb', line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/bag_kadaster_client/api/standplaats_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#standplaats_geometrie(point, opts = {}) ⇒ StandplaatsIOHalCollection
bevragen van een standplaats met een geometrische locatie. Bevragen/raadplegen van één of meer standplaatsen met een geometrische locatie. Parameter huidig kan worden toegepast. Als geldigOp en/of beschikbaarOp niet wordt opgegeven, worden de actuele gegevens geleverd. Als expand=heeftAlsHoofdAdres, heeftAlsNevenAdres of true dan worden de gevraagde of alle objecten als geneste resource geleverd.
33 34 35 36 |
# File 'lib/bag_kadaster_client/api/standplaats_api.rb', line 33 def standplaats_geometrie(point, opts = {}) data, _status_code, _headers = standplaats_geometrie_with_http_info(point, opts) data end |
#standplaats_geometrie_with_http_info(point, opts = {}) ⇒ Array<(StandplaatsIOHalCollection, Integer, Hash)>
bevragen van een standplaats met een geometrische locatie. Bevragen/raadplegen van één of meer standplaatsen met een geometrische locatie. Parameter huidig kan worden toegepast. Als geldigOp en/of beschikbaarOp niet wordt opgegeven, worden de actuele gegevens geleverd. Als expand=heeftAlsHoofdAdres, heeftAlsNevenAdres of true dan worden de gevraagde of alle objecten als geneste resource geleverd.
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 |
# File 'lib/bag_kadaster_client/api/standplaats_api.rb', line 49 def standplaats_geometrie_with_http_info(point, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StandplaatsApi.standplaats_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 StandplaatsApi.standplaats_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 = '/standplaatsen' # 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? query_params[:'expand'] = opts[:'expand'] if !opts[:'expand'].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] || 'StandplaatsIOHalCollection' # auth_names auth_names = opts[:debug_auth_names] || ['apiKeyBAG'] = opts.merge( :operation => :"StandplaatsApi.standplaats_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: StandplaatsApi#standplaats_geometrie\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#standplaats_identificatie(identificatie, opts = {}) ⇒ StandplaatsIOHal
bevragen van een standplaats met de identificatie van een standplaats. Bevragen/raadplegen van een standplaats met de identificatie van de standplaats. Als geldigOp en/of beschikbaarOp niet wordt opgegeven, worden de actuele gegevens geleverd. Als expand=heeftAlsHoofdAdres, heeftAlsNevenAdres of true dan worden de gevraagde of alle objecten als geneste resource geleverd.
125 126 127 128 |
# File 'lib/bag_kadaster_client/api/standplaats_api.rb', line 125 def standplaats_identificatie(identificatie, opts = {}) data, _status_code, _headers = standplaats_identificatie_with_http_info(identificatie, opts) data end |
#standplaats_identificatie_voorkomen(identificatie, versie, timestamp_registratie_lv, opts = {}) ⇒ StandplaatsIOHal
bevragen van een voorkomen van een standplaats met de identificatie van een standplaats 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 standplaats met de identificatie van een standplaats en de identificatie van een voorkomen, bestaande uit een versie en een timestamp van het tijdstip van registratie in de LV BAG.
208 209 210 211 |
# File 'lib/bag_kadaster_client/api/standplaats_api.rb', line 208 def standplaats_identificatie_voorkomen(identificatie, versie, , opts = {}) data, _status_code, _headers = standplaats_identificatie_voorkomen_with_http_info(identificatie, versie, , opts) data end |
#standplaats_identificatie_voorkomen_with_http_info(identificatie, versie, timestamp_registratie_lv, opts = {}) ⇒ Array<(StandplaatsIOHal, Integer, Hash)>
bevragen van een voorkomen van een standplaats met de identificatie van een standplaats 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 standplaats met de identificatie van een standplaats en de identificatie van een voorkomen, bestaande uit een versie en een timestamp van het tijdstip van registratie in de LV BAG.
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 285 286 287 288 289 290 |
# File 'lib/bag_kadaster_client/api/standplaats_api.rb', line 221 def standplaats_identificatie_voorkomen_with_http_info(identificatie, versie, , opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StandplaatsApi.standplaats_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 StandplaatsApi.standplaats_identificatie_voorkomen" end pattern = Regexp.new(/^[0-9]{4}03[0-9]{10}$/) if @api_client.config.client_side_validation && identificatie !~ pattern fail ArgumentError, "invalid value for 'identificatie' when calling StandplaatsApi.standplaats_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 StandplaatsApi.standplaats_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 StandplaatsApi.standplaats_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 StandplaatsApi.standplaats_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 = '/standplaatsen/{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] || 'StandplaatsIOHal' # auth_names auth_names = opts[:debug_auth_names] || ['apiKeyBAG'] = opts.merge( :operation => :"StandplaatsApi.standplaats_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: StandplaatsApi#standplaats_identificatie_voorkomen\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#standplaats_identificatie_with_http_info(identificatie, opts = {}) ⇒ Array<(StandplaatsIOHal, Integer, Hash)>
bevragen van een standplaats met de identificatie van een standplaats. Bevragen/raadplegen van een standplaats met de identificatie van de standplaats. Als geldigOp en/of beschikbaarOp niet wordt opgegeven, worden de actuele gegevens geleverd. Als expand=heeftAlsHoofdAdres, heeftAlsNevenAdres of true dan worden de gevraagde of alle objecten als geneste resource geleverd.
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 |
# File 'lib/bag_kadaster_client/api/standplaats_api.rb', line 139 def standplaats_identificatie_with_http_info(identificatie, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StandplaatsApi.standplaats_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 StandplaatsApi.standplaats_identificatie" end pattern = Regexp.new(/^[0-9]{4}03[0-9]{10}$/) if @api_client.config.client_side_validation && identificatie !~ pattern fail ArgumentError, "invalid value for 'identificatie' when calling StandplaatsApi.standplaats_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 = '/standplaatsen/{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? query_params[:'expand'] = opts[:'expand'] if !opts[:'expand'].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] || 'StandplaatsIOHal' # auth_names auth_names = opts[:debug_auth_names] || ['apiKeyBAG'] = opts.merge( :operation => :"StandplaatsApi.standplaats_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: StandplaatsApi#standplaats_identificatie\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#standplaats_lvc_identificatie(identificatie, opts = {}) ⇒ StandplaatsIOLvcHalCollection
bevragen levenscyclus van een standplaats met de identificatie van een standplaats. Bevragen/raadplegen van de levenscyclus van een standplaats met de identificatie van de standplaats.
299 300 301 302 |
# File 'lib/bag_kadaster_client/api/standplaats_api.rb', line 299 def standplaats_lvc_identificatie(identificatie, opts = {}) data, _status_code, _headers = standplaats_lvc_identificatie_with_http_info(identificatie, opts) data end |
#standplaats_lvc_identificatie_with_http_info(identificatie, opts = {}) ⇒ Array<(StandplaatsIOLvcHalCollection, Integer, Hash)>
bevragen levenscyclus van een standplaats met de identificatie van een standplaats. Bevragen/raadplegen van de levenscyclus van een standplaats met de identificatie van de standplaats.
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 363 364 365 366 367 368 |
# File 'lib/bag_kadaster_client/api/standplaats_api.rb', line 311 def standplaats_lvc_identificatie_with_http_info(identificatie, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StandplaatsApi.standplaats_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 StandplaatsApi.standplaats_lvc_identificatie" end pattern = Regexp.new(/^[0-9]{4}03[0-9]{10}$/) if @api_client.config.client_side_validation && identificatie !~ pattern fail ArgumentError, "invalid value for 'identificatie' when calling StandplaatsApi.standplaats_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 = '/standplaatsen/{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] || 'StandplaatsIOLvcHalCollection' # auth_names auth_names = opts[:debug_auth_names] || ['apiKeyBAG'] = opts.merge( :operation => :"StandplaatsApi.standplaats_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: StandplaatsApi#standplaats_lvc_identificatie\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |