Class: Kubernetes::StorageV1Api
- Inherits:
-
Object
- Object
- Kubernetes::StorageV1Api
- Defined in:
- lib/kubernetes/api/storage_v1_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#create_storage_class(body, opts = {}) ⇒ V1StorageClass
create a StorageClass.
-
#create_storage_class_with_http_info(body, opts = {}) ⇒ Array<(V1StorageClass, Fixnum, Hash)>
create a StorageClass.
-
#create_volume_attachment(body, opts = {}) ⇒ V1VolumeAttachment
create a VolumeAttachment.
-
#create_volume_attachment_with_http_info(body, opts = {}) ⇒ Array<(V1VolumeAttachment, Fixnum, Hash)>
create a VolumeAttachment.
-
#delete_collection_storage_class(opts = {}) ⇒ V1Status
delete collection of StorageClass.
-
#delete_collection_storage_class_with_http_info(opts = {}) ⇒ Array<(V1Status, Fixnum, Hash)>
delete collection of StorageClass.
-
#delete_collection_volume_attachment(opts = {}) ⇒ V1Status
delete collection of VolumeAttachment.
-
#delete_collection_volume_attachment_with_http_info(opts = {}) ⇒ Array<(V1Status, Fixnum, Hash)>
delete collection of VolumeAttachment.
-
#delete_storage_class(name, opts = {}) ⇒ V1Status
delete a StorageClass.
-
#delete_storage_class_with_http_info(name, opts = {}) ⇒ Array<(V1Status, Fixnum, Hash)>
delete a StorageClass.
-
#delete_volume_attachment(name, opts = {}) ⇒ V1Status
delete a VolumeAttachment.
-
#delete_volume_attachment_with_http_info(name, opts = {}) ⇒ Array<(V1Status, Fixnum, Hash)>
delete a VolumeAttachment.
-
#get_api_resources(opts = {}) ⇒ V1APIResourceList
get available resources.
-
#get_api_resources_with_http_info(_opts = {}) ⇒ Array<(V1APIResourceList, Fixnum, Hash)>
get available resources.
-
#initialize(api_client = ApiClient.default) ⇒ StorageV1Api
constructor
A new instance of StorageV1Api.
-
#list_storage_class(opts = {}) ⇒ V1StorageClassList
list or watch objects of kind StorageClass.
-
#list_storage_class_with_http_info(opts = {}) ⇒ Array<(V1StorageClassList, Fixnum, Hash)>
list or watch objects of kind StorageClass.
-
#list_volume_attachment(opts = {}) ⇒ V1VolumeAttachmentList
list or watch objects of kind VolumeAttachment.
-
#list_volume_attachment_with_http_info(opts = {}) ⇒ Array<(V1VolumeAttachmentList, Fixnum, Hash)>
list or watch objects of kind VolumeAttachment.
-
#patch_storage_class(name, body, opts = {}) ⇒ V1StorageClass
partially update the specified StorageClass.
-
#patch_storage_class_with_http_info(name, body, opts = {}) ⇒ Array<(V1StorageClass, Fixnum, Hash)>
partially update the specified StorageClass.
-
#patch_volume_attachment(name, body, opts = {}) ⇒ V1VolumeAttachment
partially update the specified VolumeAttachment.
-
#patch_volume_attachment_status(name, body, opts = {}) ⇒ V1VolumeAttachment
partially update status of the specified VolumeAttachment.
-
#patch_volume_attachment_status_with_http_info(name, body, opts = {}) ⇒ Array<(V1VolumeAttachment, Fixnum, Hash)>
partially update status of the specified VolumeAttachment.
-
#patch_volume_attachment_with_http_info(name, body, opts = {}) ⇒ Array<(V1VolumeAttachment, Fixnum, Hash)>
partially update the specified VolumeAttachment.
-
#read_storage_class(name, opts = {}) ⇒ V1StorageClass
read the specified StorageClass.
-
#read_storage_class_with_http_info(name, opts = {}) ⇒ Array<(V1StorageClass, Fixnum, Hash)>
read the specified StorageClass.
-
#read_volume_attachment(name, opts = {}) ⇒ V1VolumeAttachment
read the specified VolumeAttachment.
-
#read_volume_attachment_status(name, opts = {}) ⇒ V1VolumeAttachment
read status of the specified VolumeAttachment.
-
#read_volume_attachment_status_with_http_info(name, opts = {}) ⇒ Array<(V1VolumeAttachment, Fixnum, Hash)>
read status of the specified VolumeAttachment.
-
#read_volume_attachment_with_http_info(name, opts = {}) ⇒ Array<(V1VolumeAttachment, Fixnum, Hash)>
read the specified VolumeAttachment.
-
#replace_storage_class(name, body, opts = {}) ⇒ V1StorageClass
replace the specified StorageClass.
-
#replace_storage_class_with_http_info(name, body, opts = {}) ⇒ Array<(V1StorageClass, Fixnum, Hash)>
replace the specified StorageClass.
-
#replace_volume_attachment(name, body, opts = {}) ⇒ V1VolumeAttachment
replace the specified VolumeAttachment.
-
#replace_volume_attachment_status(name, body, opts = {}) ⇒ V1VolumeAttachment
replace status of the specified VolumeAttachment.
-
#replace_volume_attachment_status_with_http_info(name, body, opts = {}) ⇒ Array<(V1VolumeAttachment, Fixnum, Hash)>
replace status of the specified VolumeAttachment.
-
#replace_volume_attachment_with_http_info(name, body, opts = {}) ⇒ Array<(V1VolumeAttachment, Fixnum, Hash)>
replace the specified VolumeAttachment.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ StorageV1Api
Returns a new instance of StorageV1Api.
19 20 21 |
# File 'lib/kubernetes/api/storage_v1_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/kubernetes/api/storage_v1_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#create_storage_class(body, opts = {}) ⇒ V1StorageClass
create a StorageClass
31 32 33 34 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 31 def create_storage_class(body, opts = {}) data, _status_code, _headers = create_storage_class_with_http_info(body, opts) data end |
#create_storage_class_with_http_info(body, opts = {}) ⇒ Array<(V1StorageClass, Fixnum, Hash)>
create a StorageClass
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 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 44 def create_storage_class_with_http_info(body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StorageV1Api.create_storage_class ...' end # verify the required parameter 'body' is set if @api_client.config.client_side_validation && body.nil? raise ArgumentError, "Missing the required parameter 'body' when calling StorageV1Api.create_storage_class" end # resource path local_var_path = '/apis/storage.k8s.io/v1/storageclasses' # query parameters query_params = {} unless opts[:include_uninitialized].nil? query_params[:includeUninitialized] = opts[:include_uninitialized] end query_params[:pretty] = opts[:pretty] unless opts[:pretty].nil? query_params[:dryRun] = opts[:dry_run] unless opts[:dry_run].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['*/*']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(body) auth_names = ['BearerToken'] data, status_code, headers = @api_client.call_api(:POST, local_var_path, header_params: header_params, query_params: query_params, form_params: form_params, body: post_body, auth_names: auth_names, return_type: 'V1StorageClass') if @api_client.config.debugging @api_client.config.logger.debug "API called: StorageV1Api#create_storage_class\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end [data, status_code, headers] end |
#create_volume_attachment(body, opts = {}) ⇒ V1VolumeAttachment
create a VolumeAttachment
102 103 104 105 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 102 def (body, opts = {}) data, _status_code, _headers = (body, opts) data end |
#create_volume_attachment_with_http_info(body, opts = {}) ⇒ Array<(V1VolumeAttachment, Fixnum, Hash)>
create a VolumeAttachment
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 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 115 def (body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StorageV1Api.create_volume_attachment ...' end # verify the required parameter 'body' is set if @api_client.config.client_side_validation && body.nil? raise ArgumentError, "Missing the required parameter 'body' when calling StorageV1Api.create_volume_attachment" end # resource path local_var_path = '/apis/storage.k8s.io/v1/volumeattachments' # query parameters query_params = {} unless opts[:include_uninitialized].nil? query_params[:includeUninitialized] = opts[:include_uninitialized] end query_params[:pretty] = opts[:pretty] unless opts[:pretty].nil? query_params[:dryRun] = opts[:dry_run] unless opts[:dry_run].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['*/*']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(body) auth_names = ['BearerToken'] data, status_code, headers = @api_client.call_api(:POST, local_var_path, header_params: header_params, query_params: query_params, form_params: form_params, body: post_body, auth_names: auth_names, return_type: 'V1VolumeAttachment') if @api_client.config.debugging @api_client.config.logger.debug "API called: StorageV1Api#create_volume_attachment\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end [data, status_code, headers] end |
#delete_collection_storage_class(opts = {}) ⇒ V1Status
delete collection of StorageClass
178 179 180 181 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 178 def delete_collection_storage_class(opts = {}) data, _status_code, _headers = delete_collection_storage_class_with_http_info(opts) data end |
#delete_collection_storage_class_with_http_info(opts = {}) ⇒ Array<(V1Status, Fixnum, Hash)>
delete collection of StorageClass
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 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 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 196 def delete_collection_storage_class_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StorageV1Api.delete_collection_storage_class ...' end # resource path local_var_path = '/apis/storage.k8s.io/v1/storageclasses' # query parameters query_params = {} unless opts[:include_uninitialized].nil? query_params[:includeUninitialized] = opts[:include_uninitialized] end query_params[:pretty] = opts[:pretty] unless opts[:pretty].nil? query_params[:continue] = opts[:continue] unless opts[:continue].nil? query_params[:fieldSelector] = opts[:field_selector] unless opts[:field_selector].nil? query_params[:labelSelector] = opts[:label_selector] unless opts[:label_selector].nil? query_params[:limit] = opts[:limit] unless opts[:limit].nil? query_params[:resourceVersion] = opts[:resource_version] unless opts[:resource_version].nil? query_params[:timeoutSeconds] = opts[:timeout_seconds] unless opts[:timeout_seconds].nil? query_params[:watch] = opts[:watch] unless opts[:watch].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['*/*']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['BearerToken'] data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, header_params: header_params, query_params: query_params, form_params: form_params, body: post_body, auth_names: auth_names, return_type: 'V1Status') if @api_client.config.debugging @api_client.config.logger.debug "API called: StorageV1Api#delete_collection_storage_class\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end [data, status_code, headers] end |
#delete_collection_volume_attachment(opts = {}) ⇒ V1Status
delete collection of VolumeAttachment
259 260 261 262 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 259 def (opts = {}) data, _status_code, _headers = (opts) data end |
#delete_collection_volume_attachment_with_http_info(opts = {}) ⇒ Array<(V1Status, Fixnum, Hash)>
delete collection of VolumeAttachment
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 277 def (opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StorageV1Api.delete_collection_volume_attachment ...' end # resource path local_var_path = '/apis/storage.k8s.io/v1/volumeattachments' # query parameters query_params = {} unless opts[:include_uninitialized].nil? query_params[:includeUninitialized] = opts[:include_uninitialized] end query_params[:pretty] = opts[:pretty] unless opts[:pretty].nil? query_params[:continue] = opts[:continue] unless opts[:continue].nil? query_params[:fieldSelector] = opts[:field_selector] unless opts[:field_selector].nil? query_params[:labelSelector] = opts[:label_selector] unless opts[:label_selector].nil? query_params[:limit] = opts[:limit] unless opts[:limit].nil? query_params[:resourceVersion] = opts[:resource_version] unless opts[:resource_version].nil? query_params[:timeoutSeconds] = opts[:timeout_seconds] unless opts[:timeout_seconds].nil? query_params[:watch] = opts[:watch] unless opts[:watch].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['*/*']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['BearerToken'] data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, header_params: header_params, query_params: query_params, form_params: form_params, body: post_body, auth_names: auth_names, return_type: 'V1Status') if @api_client.config.debugging @api_client.config.logger.debug "API called: StorageV1Api#delete_collection_volume_attachment\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end [data, status_code, headers] end |
#delete_storage_class(name, opts = {}) ⇒ V1Status
delete a StorageClass
338 339 340 341 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 338 def delete_storage_class(name, opts = {}) data, _status_code, _headers = delete_storage_class_with_http_info(name, opts) data end |
#delete_storage_class_with_http_info(name, opts = {}) ⇒ Array<(V1Status, Fixnum, Hash)>
delete a StorageClass
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 354 def delete_storage_class_with_http_info(name, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StorageV1Api.delete_storage_class ...' end # verify the required parameter 'name' is set if @api_client.config.client_side_validation && name.nil? raise ArgumentError, "Missing the required parameter 'name' when calling StorageV1Api.delete_storage_class" end # resource path local_var_path = '/apis/storage.k8s.io/v1/storageclasses/{name}'.sub('{name}', name.to_s) # query parameters query_params = {} query_params[:pretty] = opts[:pretty] unless opts[:pretty].nil? query_params[:dryRun] = opts[:dry_run] unless opts[:dry_run].nil? unless opts[:grace_period_seconds].nil? query_params[:gracePeriodSeconds] = opts[:grace_period_seconds] end unless opts[:orphan_dependents].nil? query_params[:orphanDependents] = opts[:orphan_dependents] end unless opts[:propagation_policy].nil? query_params[:propagationPolicy] = opts[:propagation_policy] end # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['*/*']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(opts[:body]) auth_names = ['BearerToken'] data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, header_params: header_params, query_params: query_params, form_params: form_params, body: post_body, auth_names: auth_names, return_type: 'V1Status') if @api_client.config.debugging @api_client.config.logger.debug "API called: StorageV1Api#delete_storage_class\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end [data, status_code, headers] end |
#delete_volume_attachment(name, opts = {}) ⇒ V1Status
delete a VolumeAttachment
424 425 426 427 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 424 def (name, opts = {}) data, _status_code, _headers = (name, opts) data end |
#delete_volume_attachment_with_http_info(name, opts = {}) ⇒ Array<(V1Status, Fixnum, Hash)>
delete a VolumeAttachment
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 440 def (name, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StorageV1Api.delete_volume_attachment ...' end # verify the required parameter 'name' is set if @api_client.config.client_side_validation && name.nil? raise ArgumentError, "Missing the required parameter 'name' when calling StorageV1Api.delete_volume_attachment" end # resource path local_var_path = '/apis/storage.k8s.io/v1/volumeattachments/{name}'.sub('{name}', name.to_s) # query parameters query_params = {} query_params[:pretty] = opts[:pretty] unless opts[:pretty].nil? query_params[:dryRun] = opts[:dry_run] unless opts[:dry_run].nil? unless opts[:grace_period_seconds].nil? query_params[:gracePeriodSeconds] = opts[:grace_period_seconds] end unless opts[:orphan_dependents].nil? query_params[:orphanDependents] = opts[:orphan_dependents] end unless opts[:propagation_policy].nil? query_params[:propagationPolicy] = opts[:propagation_policy] end # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['*/*']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(opts[:body]) auth_names = ['BearerToken'] data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, header_params: header_params, query_params: query_params, form_params: form_params, body: post_body, auth_names: auth_names, return_type: 'V1Status') if @api_client.config.debugging @api_client.config.logger.debug "API called: StorageV1Api#delete_volume_attachment\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end [data, status_code, headers] end |
#get_api_resources(opts = {}) ⇒ V1APIResourceList
get available resources
503 504 505 506 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 503 def get_api_resources(opts = {}) data, _status_code, _headers = get_api_resources_with_http_info(opts) data end |
#get_api_resources_with_http_info(_opts = {}) ⇒ Array<(V1APIResourceList, Fixnum, Hash)>
get available resources
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 512 def get_api_resources_with_http_info(_opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StorageV1Api.get_api_resources ...' end # resource path local_var_path = '/apis/storage.k8s.io/v1/' # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['BearerToken'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, header_params: header_params, query_params: query_params, form_params: form_params, body: post_body, auth_names: auth_names, return_type: 'V1APIResourceList') if @api_client.config.debugging @api_client.config.logger.debug "API called: StorageV1Api#get_api_resources\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end [data, status_code, headers] end |
#list_storage_class(opts = {}) ⇒ V1StorageClassList
list or watch objects of kind StorageClass
565 566 567 568 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 565 def list_storage_class(opts = {}) data, _status_code, _headers = list_storage_class_with_http_info(opts) data end |
#list_storage_class_with_http_info(opts = {}) ⇒ Array<(V1StorageClassList, Fixnum, Hash)>
list or watch objects of kind StorageClass
583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 583 def list_storage_class_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StorageV1Api.list_storage_class ...' end # resource path local_var_path = '/apis/storage.k8s.io/v1/storageclasses' # query parameters query_params = {} unless opts[:include_uninitialized].nil? query_params[:includeUninitialized] = opts[:include_uninitialized] end query_params[:pretty] = opts[:pretty] unless opts[:pretty].nil? query_params[:continue] = opts[:continue] unless opts[:continue].nil? query_params[:fieldSelector] = opts[:field_selector] unless opts[:field_selector].nil? query_params[:labelSelector] = opts[:label_selector] unless opts[:label_selector].nil? query_params[:limit] = opts[:limit] unless opts[:limit].nil? query_params[:resourceVersion] = opts[:resource_version] unless opts[:resource_version].nil? query_params[:timeoutSeconds] = opts[:timeout_seconds] unless opts[:timeout_seconds].nil? query_params[:watch] = opts[:watch] unless opts[:watch].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf', 'application/json;stream=watch', 'application/vnd.kubernetes.protobuf;stream=watch']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['*/*']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['BearerToken'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, header_params: header_params, query_params: query_params, form_params: form_params, body: post_body, auth_names: auth_names, return_type: 'V1StorageClassList') if @api_client.config.debugging @api_client.config.logger.debug "API called: StorageV1Api#list_storage_class\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end [data, status_code, headers] end |
#list_volume_attachment(opts = {}) ⇒ V1VolumeAttachmentList
list or watch objects of kind VolumeAttachment
646 647 648 649 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 646 def (opts = {}) data, _status_code, _headers = (opts) data end |
#list_volume_attachment_with_http_info(opts = {}) ⇒ Array<(V1VolumeAttachmentList, Fixnum, Hash)>
list or watch objects of kind VolumeAttachment
664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 664 def (opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StorageV1Api.list_volume_attachment ...' end # resource path local_var_path = '/apis/storage.k8s.io/v1/volumeattachments' # query parameters query_params = {} unless opts[:include_uninitialized].nil? query_params[:includeUninitialized] = opts[:include_uninitialized] end query_params[:pretty] = opts[:pretty] unless opts[:pretty].nil? query_params[:continue] = opts[:continue] unless opts[:continue].nil? query_params[:fieldSelector] = opts[:field_selector] unless opts[:field_selector].nil? query_params[:labelSelector] = opts[:label_selector] unless opts[:label_selector].nil? query_params[:limit] = opts[:limit] unless opts[:limit].nil? query_params[:resourceVersion] = opts[:resource_version] unless opts[:resource_version].nil? query_params[:timeoutSeconds] = opts[:timeout_seconds] unless opts[:timeout_seconds].nil? query_params[:watch] = opts[:watch] unless opts[:watch].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf', 'application/json;stream=watch', 'application/vnd.kubernetes.protobuf;stream=watch']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['*/*']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['BearerToken'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, header_params: header_params, query_params: query_params, form_params: form_params, body: post_body, auth_names: auth_names, return_type: 'V1VolumeAttachmentList') if @api_client.config.debugging @api_client.config.logger.debug "API called: StorageV1Api#list_volume_attachment\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end [data, status_code, headers] end |
#patch_storage_class(name, body, opts = {}) ⇒ V1StorageClass
partially update the specified StorageClass
722 723 724 725 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 722 def patch_storage_class(name, body, opts = {}) data, _status_code, _headers = patch_storage_class_with_http_info(name, body, opts) data end |
#patch_storage_class_with_http_info(name, body, opts = {}) ⇒ Array<(V1StorageClass, Fixnum, Hash)>
partially update the specified StorageClass
735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 735 def patch_storage_class_with_http_info(name, body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StorageV1Api.patch_storage_class ...' end # verify the required parameter 'name' is set if @api_client.config.client_side_validation && name.nil? raise ArgumentError, "Missing the required parameter 'name' when calling StorageV1Api.patch_storage_class" end # verify the required parameter 'body' is set if @api_client.config.client_side_validation && body.nil? raise ArgumentError, "Missing the required parameter 'body' when calling StorageV1Api.patch_storage_class" end # resource path local_var_path = '/apis/storage.k8s.io/v1/storageclasses/{name}'.sub('{name}', name.to_s) # query parameters query_params = {} query_params[:pretty] = opts[:pretty] unless opts[:pretty].nil? query_params[:dryRun] = opts[:dry_run] unless opts[:dry_run].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json-patch+json', 'application/merge-patch+json', 'application/strategic-merge-patch+json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(body) auth_names = ['BearerToken'] data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, header_params: header_params, query_params: query_params, form_params: form_params, body: post_body, auth_names: auth_names, return_type: 'V1StorageClass') if @api_client.config.debugging @api_client.config.logger.debug "API called: StorageV1Api#patch_storage_class\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end [data, status_code, headers] end |
#patch_volume_attachment(name, body, opts = {}) ⇒ V1VolumeAttachment
partially update the specified VolumeAttachment
797 798 799 800 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 797 def (name, body, opts = {}) data, _status_code, _headers = (name, body, opts) data end |
#patch_volume_attachment_status(name, body, opts = {}) ⇒ V1VolumeAttachment
partially update status of the specified VolumeAttachment
872 873 874 875 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 872 def (name, body, opts = {}) data, _status_code, _headers = (name, body, opts) data end |
#patch_volume_attachment_status_with_http_info(name, body, opts = {}) ⇒ Array<(V1VolumeAttachment, Fixnum, Hash)>
partially update status of the specified VolumeAttachment
885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 885 def (name, body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StorageV1Api.patch_volume_attachment_status ...' end # verify the required parameter 'name' is set if @api_client.config.client_side_validation && name.nil? raise ArgumentError, "Missing the required parameter 'name' when calling StorageV1Api.patch_volume_attachment_status" end # verify the required parameter 'body' is set if @api_client.config.client_side_validation && body.nil? raise ArgumentError, "Missing the required parameter 'body' when calling StorageV1Api.patch_volume_attachment_status" end # resource path local_var_path = '/apis/storage.k8s.io/v1/volumeattachments/{name}/status'.sub( '{name}', name.to_s ) # query parameters query_params = {} query_params[:pretty] = opts[:pretty] unless opts[:pretty].nil? query_params[:dryRun] = opts[:dry_run] unless opts[:dry_run].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json-patch+json', 'application/merge-patch+json', 'application/strategic-merge-patch+json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(body) auth_names = ['BearerToken'] data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, header_params: header_params, query_params: query_params, form_params: form_params, body: post_body, auth_names: auth_names, return_type: 'V1VolumeAttachment') if @api_client.config.debugging @api_client.config.logger.debug "API called: StorageV1Api#patch_volume_attachment_status\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end [data, status_code, headers] end |
#patch_volume_attachment_with_http_info(name, body, opts = {}) ⇒ Array<(V1VolumeAttachment, Fixnum, Hash)>
partially update the specified VolumeAttachment
810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 810 def (name, body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StorageV1Api.patch_volume_attachment ...' end # verify the required parameter 'name' is set if @api_client.config.client_side_validation && name.nil? raise ArgumentError, "Missing the required parameter 'name' when calling StorageV1Api.patch_volume_attachment" end # verify the required parameter 'body' is set if @api_client.config.client_side_validation && body.nil? raise ArgumentError, "Missing the required parameter 'body' when calling StorageV1Api.patch_volume_attachment" end # resource path local_var_path = '/apis/storage.k8s.io/v1/volumeattachments/{name}'.sub('{name}', name.to_s) # query parameters query_params = {} query_params[:pretty] = opts[:pretty] unless opts[:pretty].nil? query_params[:dryRun] = opts[:dry_run] unless opts[:dry_run].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json-patch+json', 'application/merge-patch+json', 'application/strategic-merge-patch+json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(body) auth_names = ['BearerToken'] data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, header_params: header_params, query_params: query_params, form_params: form_params, body: post_body, auth_names: auth_names, return_type: 'V1VolumeAttachment') if @api_client.config.debugging @api_client.config.logger.debug "API called: StorageV1Api#patch_volume_attachment\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end [data, status_code, headers] end |
#read_storage_class(name, opts = {}) ⇒ V1StorageClass
read the specified StorageClass
948 949 950 951 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 948 def read_storage_class(name, opts = {}) data, _status_code, _headers = read_storage_class_with_http_info(name, opts) data end |
#read_storage_class_with_http_info(name, opts = {}) ⇒ Array<(V1StorageClass, Fixnum, Hash)>
read the specified StorageClass
961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 961 def read_storage_class_with_http_info(name, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StorageV1Api.read_storage_class ...' end # verify the required parameter 'name' is set if @api_client.config.client_side_validation && name.nil? raise ArgumentError, "Missing the required parameter 'name' when calling StorageV1Api.read_storage_class" end # resource path local_var_path = '/apis/storage.k8s.io/v1/storageclasses/{name}'.sub('{name}', name.to_s) # query parameters query_params = {} query_params[:pretty] = opts[:pretty] unless opts[:pretty].nil? query_params[:exact] = opts[:exact] unless opts[:exact].nil? query_params[:export] = opts[:export] unless opts[:export].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['*/*']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['BearerToken'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, header_params: header_params, query_params: query_params, form_params: form_params, body: post_body, auth_names: auth_names, return_type: 'V1StorageClass') if @api_client.config.debugging @api_client.config.logger.debug "API called: StorageV1Api#read_storage_class\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end [data, status_code, headers] end |
#read_volume_attachment(name, opts = {}) ⇒ V1VolumeAttachment
read the specified VolumeAttachment
1017 1018 1019 1020 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 1017 def (name, opts = {}) data, _status_code, _headers = (name, opts) data end |
#read_volume_attachment_status(name, opts = {}) ⇒ V1VolumeAttachment
read status of the specified VolumeAttachment
1084 1085 1086 1087 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 1084 def (name, opts = {}) data, _status_code, _headers = (name, opts) data end |
#read_volume_attachment_status_with_http_info(name, opts = {}) ⇒ Array<(V1VolumeAttachment, Fixnum, Hash)>
read status of the specified VolumeAttachment
1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 1095 def (name, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StorageV1Api.read_volume_attachment_status ...' end # verify the required parameter 'name' is set if @api_client.config.client_side_validation && name.nil? raise ArgumentError, "Missing the required parameter 'name' when calling StorageV1Api.read_volume_attachment_status" end # resource path local_var_path = '/apis/storage.k8s.io/v1/volumeattachments/{name}/status'.sub( '{name}', name.to_s ) # query parameters query_params = {} query_params[:pretty] = opts[:pretty] unless opts[:pretty].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['*/*']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['BearerToken'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, header_params: header_params, query_params: query_params, form_params: form_params, body: post_body, auth_names: auth_names, return_type: 'V1VolumeAttachment') if @api_client.config.debugging @api_client.config.logger.debug "API called: StorageV1Api#read_volume_attachment_status\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end [data, status_code, headers] end |
#read_volume_attachment_with_http_info(name, opts = {}) ⇒ Array<(V1VolumeAttachment, Fixnum, Hash)>
read the specified VolumeAttachment
1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 1030 def (name, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StorageV1Api.read_volume_attachment ...' end # verify the required parameter 'name' is set if @api_client.config.client_side_validation && name.nil? raise ArgumentError, "Missing the required parameter 'name' when calling StorageV1Api.read_volume_attachment" end # resource path local_var_path = '/apis/storage.k8s.io/v1/volumeattachments/{name}'.sub('{name}', name.to_s) # query parameters query_params = {} query_params[:pretty] = opts[:pretty] unless opts[:pretty].nil? query_params[:exact] = opts[:exact] unless opts[:exact].nil? query_params[:export] = opts[:export] unless opts[:export].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['*/*']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['BearerToken'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, header_params: header_params, query_params: query_params, form_params: form_params, body: post_body, auth_names: auth_names, return_type: 'V1VolumeAttachment') if @api_client.config.debugging @api_client.config.logger.debug "API called: StorageV1Api#read_volume_attachment\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end [data, status_code, headers] end |
#replace_storage_class(name, body, opts = {}) ⇒ V1StorageClass
replace the specified StorageClass
1150 1151 1152 1153 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 1150 def replace_storage_class(name, body, opts = {}) data, _status_code, _headers = replace_storage_class_with_http_info(name, body, opts) data end |
#replace_storage_class_with_http_info(name, body, opts = {}) ⇒ Array<(V1StorageClass, Fixnum, Hash)>
replace the specified StorageClass
1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 1163 def replace_storage_class_with_http_info(name, body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StorageV1Api.replace_storage_class ...' end # verify the required parameter 'name' is set if @api_client.config.client_side_validation && name.nil? raise ArgumentError, "Missing the required parameter 'name' when calling StorageV1Api.replace_storage_class" end # verify the required parameter 'body' is set if @api_client.config.client_side_validation && body.nil? raise ArgumentError, "Missing the required parameter 'body' when calling StorageV1Api.replace_storage_class" end # resource path local_var_path = '/apis/storage.k8s.io/v1/storageclasses/{name}'.sub('{name}', name.to_s) # query parameters query_params = {} query_params[:pretty] = opts[:pretty] unless opts[:pretty].nil? query_params[:dryRun] = opts[:dry_run] unless opts[:dry_run].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['*/*']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(body) auth_names = ['BearerToken'] data, status_code, headers = @api_client.call_api(:PUT, local_var_path, header_params: header_params, query_params: query_params, form_params: form_params, body: post_body, auth_names: auth_names, return_type: 'V1StorageClass') if @api_client.config.debugging @api_client.config.logger.debug "API called: StorageV1Api#replace_storage_class\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end [data, status_code, headers] end |
#replace_volume_attachment(name, body, opts = {}) ⇒ V1VolumeAttachment
replace the specified VolumeAttachment
1223 1224 1225 1226 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 1223 def (name, body, opts = {}) data, _status_code, _headers = (name, body, opts) data end |
#replace_volume_attachment_status(name, body, opts = {}) ⇒ V1VolumeAttachment
replace status of the specified VolumeAttachment
1296 1297 1298 1299 1300 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 1296 def (name, body, opts = {}) data, _status_code, _headers = (name, body, opts) data end |
#replace_volume_attachment_status_with_http_info(name, body, opts = {}) ⇒ Array<(V1VolumeAttachment, Fixnum, Hash)>
replace status of the specified VolumeAttachment
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 1310 def (name, body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StorageV1Api.replace_volume_attachment_status ...' end # verify the required parameter 'name' is set if @api_client.config.client_side_validation && name.nil? raise ArgumentError, "Missing the required parameter 'name' when calling StorageV1Api.replace_volume_attachment_status" end # verify the required parameter 'body' is set if @api_client.config.client_side_validation && body.nil? raise ArgumentError, "Missing the required parameter 'body' when calling StorageV1Api.replace_volume_attachment_status" end # resource path local_var_path = '/apis/storage.k8s.io/v1/volumeattachments/{name}/status'.sub( '{name}', name.to_s ) # query parameters query_params = {} query_params[:pretty] = opts[:pretty] unless opts[:pretty].nil? query_params[:dryRun] = opts[:dry_run] unless opts[:dry_run].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['*/*']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(body) auth_names = ['BearerToken'] data, status_code, headers = @api_client.call_api(:PUT, local_var_path, header_params: header_params, query_params: query_params, form_params: form_params, body: post_body, auth_names: auth_names, return_type: 'V1VolumeAttachment') if @api_client.config.debugging @api_client.config.logger.debug "API called: StorageV1Api#replace_volume_attachment_status\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end [data, status_code, headers] end |
#replace_volume_attachment_with_http_info(name, body, opts = {}) ⇒ Array<(V1VolumeAttachment, Fixnum, Hash)>
replace the specified VolumeAttachment
1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 |
# File 'lib/kubernetes/api/storage_v1_api.rb', line 1236 def (name, body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: StorageV1Api.replace_volume_attachment ...' end # verify the required parameter 'name' is set if @api_client.config.client_side_validation && name.nil? raise ArgumentError, "Missing the required parameter 'name' when calling StorageV1Api.replace_volume_attachment" end # verify the required parameter 'body' is set if @api_client.config.client_side_validation && body.nil? raise ArgumentError, "Missing the required parameter 'body' when calling StorageV1Api.replace_volume_attachment" end # resource path local_var_path = '/apis/storage.k8s.io/v1/volumeattachments/{name}'.sub('{name}', name.to_s) # query parameters query_params = {} query_params[:pretty] = opts[:pretty] unless opts[:pretty].nil? query_params[:dryRun] = opts[:dry_run] unless opts[:dry_run].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/yaml', 'application/vnd.kubernetes.protobuf']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['*/*']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(body) auth_names = ['BearerToken'] data, status_code, headers = @api_client.call_api(:PUT, local_var_path, header_params: header_params, query_params: query_params, form_params: form_params, body: post_body, auth_names: auth_names, return_type: 'V1VolumeAttachment') if @api_client.config.debugging @api_client.config.logger.debug "API called: StorageV1Api#replace_volume_attachment\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end [data, status_code, headers] end |