Class: OCI::ObjectStorage::ObjectStorageClient
- Inherits:
-
Object
- Object
- OCI::ObjectStorage::ObjectStorageClient
- Defined in:
- lib/oci/object_storage/object_storage_client.rb
Instance Attribute Summary collapse
-
#api_client ⇒ OCI::ApiClient
readonly
Client used to make HTTP requests.
-
#endpoint ⇒ String
readonly
Fully qualified endpoint URL.
-
#region ⇒ String
The region, which will usually correspond to a value in Regions::REGION_ENUM.
Instance Method Summary collapse
-
#abort_multipart_upload(namespace_name, bucket_name, object_name, upload_id, opts = {}) ⇒ Response
Aborts an in-progress multipart upload and deletes all parts that have been uploaded.
-
#commit_multipart_upload(namespace_name, bucket_name, object_name, upload_id, commit_multipart_upload_details, opts = {}) ⇒ Response
Commits a multipart upload, which involves checking part numbers and ETags of the parts, to create an aggregate object.
-
#create_bucket(namespace_name, create_bucket_details, opts = {}) ⇒ Response
Creates a bucket in the given namespace with a bucket name and optional user-defined metadata.
-
#create_multipart_upload(namespace_name, bucket_name, create_multipart_upload_details, opts = {}) ⇒ Response
Starts a new multipart upload to a specific object in the given bucket in the given namespace.
-
#create_preauthenticated_request(namespace_name, bucket_name, create_preauthenticated_request_details, opts = {}) ⇒ Response
Create a pre-authenticated request specific to the bucket.
-
#delete_bucket(namespace_name, bucket_name, opts = {}) ⇒ Response
Deletes a bucket if it is already empty.
-
#delete_object(namespace_name, bucket_name, object_name, opts = {}) ⇒ Response
Deletes an object.
-
#delete_preauthenticated_request(namespace_name, bucket_name, par_id, opts = {}) ⇒ Response
Deletes the bucket level pre-authenticateted request.
-
#get_bucket(namespace_name, bucket_name, opts = {}) ⇒ Response
Gets the current representation of the given bucket in the given namespace.
-
#get_namespace(opts = {}) ⇒ Response
Gets the name of the namespace for the user making the request.
-
#get_object(namespace_name, bucket_name, object_name, opts = {}, &block) ⇒ Response
Gets the metadata and body of an object.
-
#get_preauthenticated_request(namespace_name, bucket_name, par_id, opts = {}) ⇒ Response
Get the bucket level pre-authenticateted request.
-
#head_bucket(namespace_name, bucket_name, opts = {}) ⇒ Response
Efficiently checks if a bucket exists and gets the current ETag for the bucket.
-
#head_object(namespace_name, bucket_name, object_name, opts = {}) ⇒ Response
Gets the user-defined metadata and entity tag for an object.
-
#initialize(config: nil, region: nil) ⇒ ObjectStorageClient
constructor
Creates a new ObjectStorageClient.
-
#list_buckets(namespace_name, compartment_id, opts = {}) ⇒ Response
Gets a list of all ‘BucketSummary`s in a compartment.
-
#list_multipart_upload_parts(namespace_name, bucket_name, object_name, upload_id, opts = {}) ⇒ Response
Lists the parts of an in-progress multipart upload.
-
#list_multipart_uploads(namespace_name, bucket_name, opts = {}) ⇒ Response
Lists all in-progress multipart uploads for the given bucket in the given namespace.
-
#list_objects(namespace_name, bucket_name, opts = {}) ⇒ Response
Lists the objects in a bucket.
-
#list_preauthenticated_requests(namespace_name, bucket_name, opts = {}) ⇒ Response
List pre-authenticated requests for the bucket.
-
#logger ⇒ Logger
The logger for this client.
-
#put_object(namespace_name, bucket_name, object_name, put_object_body, opts = {}) ⇒ Response
Creates a new object or overwrites an existing one.
-
#update_bucket(namespace_name, bucket_name, update_bucket_details, opts = {}) ⇒ Response
Performs a partial or full update of a bucket’s user-defined metadata.
-
#upload_part(namespace_name, bucket_name, object_name, upload_id, upload_part_num, upload_part_body, opts = {}) ⇒ Response
Uploads a single part of a multipart upload.
Constructor Details
#initialize(config: nil, region: nil) ⇒ ObjectStorageClient
Creates a new ObjectStorageClient. If a config is not specified, then the global OCI.config will be used.
A region must be specified in either the config or the region parameter. If specified in both, then the region parameter will be used.
32 33 34 35 36 37 38 39 40 41 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 32 def initialize(config:nil, region:nil) config ||= OCI.config config.validate signer = Signer.new(config.user, config.fingerprint, config.tenancy, config.key_file, pass_phrase: config.pass_phrase, private_key_content: config.key_content, signing_strategy: Signer::OBJECT_STORAGE) @api_client = ApiClient.new(config, signer) region ||= config.region self.region = region end |
Instance Attribute Details
#api_client ⇒ OCI::ApiClient (readonly)
Client used to make HTTP requests.
12 13 14 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 12 def api_client @api_client end |
#endpoint ⇒ String (readonly)
Fully qualified endpoint URL
16 17 18 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 16 def endpoint @endpoint end |
#region ⇒ String
The region, which will usually correspond to a value in Regions::REGION_ENUM.
20 21 22 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 20 def region @region end |
Instance Method Details
#abort_multipart_upload(namespace_name, bucket_name, object_name, upload_id, opts = {}) ⇒ Response
Aborts an in-progress multipart upload and deletes all parts that have been uploaded.
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 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 76 def abort_multipart_upload(namespace_name, bucket_name, object_name, upload_id, opts = {}) logger.debug "Calling operation ObjectStorageClient#abort_multipart_upload." if logger fail "Missing the required parameter 'namespace_name' when calling abort_multipart_upload." if namespace_name.nil? fail "Missing the required parameter 'bucket_name' when calling abort_multipart_upload." if bucket_name.nil? fail "Missing the required parameter 'object_name' when calling abort_multipart_upload." if object_name.nil? fail "Missing the required parameter 'upload_id' when calling abort_multipart_upload." if upload_id.nil? path = "/n/{namespaceName}/b/{bucketName}/u/{objectName}".sub('{namespaceName}', namespace_name.to_s).sub('{bucketName}', bucket_name.to_s).sub('{objectName}', object_name.to_s) # Query Params query_params = {} query_params[:'uploadId'] = upload_id # Header Params header_params = {} header_params['accept'] = 'application/json' header_params['content-type'] = 'application/json' header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] post_body = nil return @api_client.call_api( :DELETE, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body) end |
#commit_multipart_upload(namespace_name, bucket_name, object_name, upload_id, commit_multipart_upload_details, opts = {}) ⇒ Response
Commits a multipart upload, which involves checking part numbers and ETags of the parts, to create an aggregate object.
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 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 130 def commit_multipart_upload(namespace_name, bucket_name, object_name, upload_id, commit_multipart_upload_details, opts = {}) logger.debug "Calling operation ObjectStorageClient#commit_multipart_upload." if logger fail "Missing the required parameter 'namespace_name' when calling commit_multipart_upload." if namespace_name.nil? fail "Missing the required parameter 'bucket_name' when calling commit_multipart_upload." if bucket_name.nil? fail "Missing the required parameter 'object_name' when calling commit_multipart_upload." if object_name.nil? fail "Missing the required parameter 'upload_id' when calling commit_multipart_upload." if upload_id.nil? fail "Missing the required parameter 'commit_multipart_upload_details' when calling commit_multipart_upload." if commit_multipart_upload_details.nil? path = "/n/{namespaceName}/b/{bucketName}/u/{objectName}".sub('{namespaceName}', namespace_name.to_s).sub('{bucketName}', bucket_name.to_s).sub('{objectName}', object_name.to_s) # Query Params query_params = {} query_params[:'uploadId'] = upload_id # Header Params header_params = {} header_params['accept'] = 'application/json' header_params['content-type'] = 'application/json' header_params[:'if-match'] = opts[:'if_match'] if opts[:'if_match'] header_params[:'if-none-match'] = opts[:'if_none_match'] if opts[:'if_none_match'] header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] post_body = @api_client.object_to_http_body(commit_multipart_upload_details) return @api_client.call_api( :POST, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body) end |
#create_bucket(namespace_name, create_bucket_details, opts = {}) ⇒ Response
Creates a bucket in the given namespace with a bucket name and optional user-defined metadata.
To use this and other API operations, you must be authorized in an IAM policy. If you’re not authorized, talk to an administrator. If you’re an administrator who needs to write policies to give users access, see [Getting Started with Policies](docs.us-phoenix-1.oraclecloud.com/Content/Identity/Concepts/policygetstarted.htm).
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 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 175 def create_bucket(namespace_name, create_bucket_details, opts = {}) logger.debug "Calling operation ObjectStorageClient#create_bucket." if logger fail "Missing the required parameter 'namespace_name' when calling create_bucket." if namespace_name.nil? fail "Missing the required parameter 'create_bucket_details' when calling create_bucket." if create_bucket_details.nil? path = "/n/{namespaceName}/b/".sub('{namespaceName}', namespace_name.to_s) # Query Params query_params = {} # Header Params header_params = {} header_params['accept'] = 'application/json' header_params['content-type'] = 'application/json' header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] post_body = @api_client.object_to_http_body(create_bucket_details) return @api_client.call_api( :POST, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body, :return_type => 'OCI::ObjectStorage::Models::Bucket') end |
#create_multipart_upload(namespace_name, bucket_name, create_multipart_upload_details, opts = {}) ⇒ Response
Starts a new multipart upload to a specific object in the given bucket in the given namespace.
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 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 222 def create_multipart_upload(namespace_name, bucket_name, create_multipart_upload_details, opts = {}) logger.debug "Calling operation ObjectStorageClient#create_multipart_upload." if logger fail "Missing the required parameter 'namespace_name' when calling create_multipart_upload." if namespace_name.nil? fail "Missing the required parameter 'bucket_name' when calling create_multipart_upload." if bucket_name.nil? fail "Missing the required parameter 'create_multipart_upload_details' when calling create_multipart_upload." if create_multipart_upload_details.nil? path = "/n/{namespaceName}/b/{bucketName}/u".sub('{namespaceName}', namespace_name.to_s).sub('{bucketName}', bucket_name.to_s) # Query Params query_params = {} # Header Params header_params = {} header_params['accept'] = 'application/json' header_params['content-type'] = 'application/json' header_params[:'if-match'] = opts[:'if_match'] if opts[:'if_match'] header_params[:'if-none-match'] = opts[:'if_none_match'] if opts[:'if_none_match'] header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] post_body = @api_client.object_to_http_body(create_multipart_upload_details) return @api_client.call_api( :POST, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body, :return_type => 'OCI::ObjectStorage::Models::MultipartUpload') end |
#create_preauthenticated_request(namespace_name, bucket_name, create_preauthenticated_request_details, opts = {}) ⇒ Response
Create a pre-authenticated request specific to the bucket
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 291 292 293 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 265 def create_preauthenticated_request(namespace_name, bucket_name, create_preauthenticated_request_details, opts = {}) logger.debug "Calling operation ObjectStorageClient#create_preauthenticated_request." if logger fail "Missing the required parameter 'namespace_name' when calling create_preauthenticated_request." if namespace_name.nil? fail "Missing the required parameter 'bucket_name' when calling create_preauthenticated_request." if bucket_name.nil? fail "Missing the required parameter 'create_preauthenticated_request_details' when calling create_preauthenticated_request." if create_preauthenticated_request_details.nil? path = "/n/{namespaceName}/b/{bucketName}/p/".sub('{namespaceName}', namespace_name.to_s).sub('{bucketName}', bucket_name.to_s) # Query Params query_params = {} # Header Params header_params = {} header_params['accept'] = 'application/json' header_params['content-type'] = 'application/json' header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] post_body = @api_client.object_to_http_body(create_preauthenticated_request_details) return @api_client.call_api( :POST, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body, :return_type => 'OCI::ObjectStorage::Models::PreauthenticatedRequest') end |
#delete_bucket(namespace_name, bucket_name, opts = {}) ⇒ Response
Deletes a bucket if it is already empty. If the bucket is not empty, use delete_object first.
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 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 308 def delete_bucket(namespace_name, bucket_name, opts = {}) logger.debug "Calling operation ObjectStorageClient#delete_bucket." if logger fail "Missing the required parameter 'namespace_name' when calling delete_bucket." if namespace_name.nil? fail "Missing the required parameter 'bucket_name' when calling delete_bucket." if bucket_name.nil? path = "/n/{namespaceName}/b/{bucketName}/".sub('{namespaceName}', namespace_name.to_s).sub('{bucketName}', bucket_name.to_s) # Query Params query_params = {} # Header Params header_params = {} header_params['accept'] = 'application/json' header_params['content-type'] = 'application/json' header_params[:'if-match'] = opts[:'if_match'] if opts[:'if_match'] header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] post_body = nil return @api_client.call_api( :DELETE, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body) end |
#delete_object(namespace_name, bucket_name, object_name, opts = {}) ⇒ Response
Deletes an object.
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 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 354 def delete_object(namespace_name, bucket_name, object_name, opts = {}) logger.debug "Calling operation ObjectStorageClient#delete_object." if logger fail "Missing the required parameter 'namespace_name' when calling delete_object." if namespace_name.nil? fail "Missing the required parameter 'bucket_name' when calling delete_object." if bucket_name.nil? fail "Missing the required parameter 'object_name' when calling delete_object." if object_name.nil? path = "/n/{namespaceName}/b/{bucketName}/o/{objectName}".sub('{namespaceName}', namespace_name.to_s).sub('{bucketName}', bucket_name.to_s).sub('{objectName}', object_name.to_s) # Query Params query_params = {} # Header Params header_params = {} header_params['accept'] = 'application/json' header_params['content-type'] = 'application/json' header_params[:'if-match'] = opts[:'if_match'] if opts[:'if_match'] header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] post_body = nil return @api_client.call_api( :DELETE, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body) end |
#delete_preauthenticated_request(namespace_name, bucket_name, par_id, opts = {}) ⇒ Response
Deletes the bucket level pre-authenticateted request
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 396 def delete_preauthenticated_request(namespace_name, bucket_name, par_id, opts = {}) logger.debug "Calling operation ObjectStorageClient#delete_preauthenticated_request." if logger fail "Missing the required parameter 'namespace_name' when calling delete_preauthenticated_request." if namespace_name.nil? fail "Missing the required parameter 'bucket_name' when calling delete_preauthenticated_request." if bucket_name.nil? fail "Missing the required parameter 'par_id' when calling delete_preauthenticated_request." if par_id.nil? path = "/n/{namespaceName}/b/{bucketName}/p/{parId}".sub('{namespaceName}', namespace_name.to_s).sub('{bucketName}', bucket_name.to_s).sub('{parId}', par_id.to_s) # Query Params query_params = {} # Header Params header_params = {} header_params['accept'] = 'application/json' header_params['content-type'] = 'application/json' header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] post_body = nil return @api_client.call_api( :DELETE, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body) end |
#get_bucket(namespace_name, bucket_name, opts = {}) ⇒ Response
Gets the current representation of the given bucket in the given namespace.
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 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 442 def get_bucket(namespace_name, bucket_name, opts = {}) logger.debug "Calling operation ObjectStorageClient#get_bucket." if logger fail "Missing the required parameter 'namespace_name' when calling get_bucket." if namespace_name.nil? fail "Missing the required parameter 'bucket_name' when calling get_bucket." if bucket_name.nil? path = "/n/{namespaceName}/b/{bucketName}/".sub('{namespaceName}', namespace_name.to_s).sub('{bucketName}', bucket_name.to_s) # Query Params query_params = {} # Header Params header_params = {} header_params['accept'] = 'application/json' header_params['content-type'] = 'application/json' header_params[:'if-match'] = opts[:'if_match'] if opts[:'if_match'] header_params[:'if-none-match'] = opts[:'if_none_match'] if opts[:'if_none_match'] header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] post_body = nil return @api_client.call_api( :GET, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body, :return_type => 'OCI::ObjectStorage::Models::Bucket') end |
#get_namespace(opts = {}) ⇒ Response
Gets the name of the namespace for the user making the request. An account name must be unique, must start with a letter, and can have up to 15 lowercase letters and numbers. You cannot use spaces or special characters.
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 479 def get_namespace(opts = {}) logger.debug "Calling operation ObjectStorageClient#get_namespace." if logger path = "/n/" # Query Params query_params = {} # Header Params header_params = {} header_params['accept'] = 'application/json' header_params['content-type'] = 'application/json' header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] post_body = nil return @api_client.call_api( :GET, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body, :return_type => 'String') end |
#get_object(namespace_name, bucket_name, object_name, opts = {}, &block) ⇒ Response
Gets the metadata and body of an object.
532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 532 def get_object(namespace_name, bucket_name, object_name, opts = {}, &block) logger.debug "Calling operation ObjectStorageClient#get_object." if logger fail "Missing the required parameter 'namespace_name' when calling get_object." if namespace_name.nil? fail "Missing the required parameter 'bucket_name' when calling get_object." if bucket_name.nil? fail "Missing the required parameter 'object_name' when calling get_object." if object_name.nil? path = "/n/{namespaceName}/b/{bucketName}/o/{objectName}".sub('{namespaceName}', namespace_name.to_s).sub('{bucketName}', bucket_name.to_s).sub('{objectName}', object_name.to_s) # Query Params query_params = {} # Header Params header_params = {} header_params['accept'] = 'application/json' header_params['content-type'] = 'application/json' header_params[:'if-match'] = opts[:'if_match'] if opts[:'if_match'] header_params[:'if-none-match'] = opts[:'if_none_match'] if opts[:'if_none_match'] header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] header_params[:'range'] = opts[:'range'] if opts[:'range'] post_body = nil if !block.nil? return @api_client.call_api( :GET, path, endpoint, header_params: header_params, query_params: query_params, body: post_body, return_type: 'Stream', &block ) elsif opts[:response_target] if opts[:response_target].respond_to? :write return @api_client.call_api( :GET, path, endpoint, header_params: header_params, query_params: query_params, body: post_body, return_type: 'Stream', &proc { |chunk, response| opts[:response_target].write(chunk) } ) elsif opts[:response_target].is_a?(String) open(opts[:response_target], 'wb') do |output| return @api_client.call_api( :GET, path, endpoint, header_params: header_params, query_params: query_params, body: post_body, return_type: 'Stream', &proc { |chunk, response| output.write(chunk) } ) end end else return @api_client.call_api( :GET, path, endpoint, header_params:header_params, query_params: query_params, body: post_body, return_type: 'String' ) end end |
#get_preauthenticated_request(namespace_name, bucket_name, par_id, opts = {}) ⇒ Response
Get the bucket level pre-authenticateted request
617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 617 def get_preauthenticated_request(namespace_name, bucket_name, par_id, opts = {}) logger.debug "Calling operation ObjectStorageClient#get_preauthenticated_request." if logger fail "Missing the required parameter 'namespace_name' when calling get_preauthenticated_request." if namespace_name.nil? fail "Missing the required parameter 'bucket_name' when calling get_preauthenticated_request." if bucket_name.nil? fail "Missing the required parameter 'par_id' when calling get_preauthenticated_request." if par_id.nil? path = "/n/{namespaceName}/b/{bucketName}/p/{parId}".sub('{namespaceName}', namespace_name.to_s).sub('{bucketName}', bucket_name.to_s).sub('{parId}', par_id.to_s) # Query Params query_params = {} # Header Params header_params = {} header_params['accept'] = 'application/json' header_params['content-type'] = 'application/json' header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] post_body = nil return @api_client.call_api( :GET, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body, :return_type => 'OCI::ObjectStorage::Models::PreauthenticatedRequestSummary') end |
#head_bucket(namespace_name, bucket_name, opts = {}) ⇒ Response
Efficiently checks if a bucket exists and gets the current ETag for the bucket.
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 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 664 def head_bucket(namespace_name, bucket_name, opts = {}) logger.debug "Calling operation ObjectStorageClient#head_bucket." if logger fail "Missing the required parameter 'namespace_name' when calling head_bucket." if namespace_name.nil? fail "Missing the required parameter 'bucket_name' when calling head_bucket." if bucket_name.nil? path = "/n/{namespaceName}/b/{bucketName}/".sub('{namespaceName}', namespace_name.to_s).sub('{bucketName}', bucket_name.to_s) # Query Params query_params = {} # Header Params header_params = {} header_params['accept'] = 'application/json' header_params['content-type'] = 'application/json' header_params[:'if-match'] = opts[:'if_match'] if opts[:'if_match'] header_params[:'if-none-match'] = opts[:'if_none_match'] if opts[:'if_none_match'] header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] post_body = nil return @api_client.call_api( :HEAD, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body) end |
#head_object(namespace_name, bucket_name, object_name, opts = {}) ⇒ Response
Gets the user-defined metadata and entity tag for an object.
715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 715 def head_object(namespace_name, bucket_name, object_name, opts = {}) logger.debug "Calling operation ObjectStorageClient#head_object." if logger fail "Missing the required parameter 'namespace_name' when calling head_object." if namespace_name.nil? fail "Missing the required parameter 'bucket_name' when calling head_object." if bucket_name.nil? fail "Missing the required parameter 'object_name' when calling head_object." if object_name.nil? path = "/n/{namespaceName}/b/{bucketName}/o/{objectName}".sub('{namespaceName}', namespace_name.to_s).sub('{bucketName}', bucket_name.to_s).sub('{objectName}', object_name.to_s) # Query Params query_params = {} # Header Params header_params = {} header_params['accept'] = 'application/json' header_params['content-type'] = 'application/json' header_params[:'if-match'] = opts[:'if_match'] if opts[:'if_match'] header_params[:'if-none-match'] = opts[:'if_none_match'] if opts[:'if_none_match'] header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] post_body = nil return @api_client.call_api( :HEAD, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body) end |
#list_buckets(namespace_name, compartment_id, opts = {}) ⇒ Response
Gets a list of all ‘BucketSummary`s in a compartment. A `BucketSummary` contains only summary fields for the bucket and does not contain fields like the user-defined metadata.
To use this and other API operations, you must be authorized in an IAM policy. If you’re not authorized, talk to an administrator. If you’re an administrator who needs to write policies to give users access, see [Getting Started with Policies](docs.us-phoenix-1.oraclecloud.com/Content/Identity/Concepts/policygetstarted.htm).
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 788 789 790 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 760 def list_buckets(namespace_name, compartment_id, opts = {}) logger.debug "Calling operation ObjectStorageClient#list_buckets." if logger fail "Missing the required parameter 'namespace_name' when calling list_buckets." if namespace_name.nil? fail "Missing the required parameter 'compartment_id' when calling list_buckets." if compartment_id.nil? path = "/n/{namespaceName}/b/".sub('{namespaceName}', namespace_name.to_s) # Query Params query_params = {} query_params[:'compartmentId'] = compartment_id query_params[:'limit'] = opts[:'limit'] if opts[:'limit'] query_params[:'page'] = opts[:'page'] if opts[:'page'] # Header Params header_params = {} header_params['accept'] = 'application/json' header_params['content-type'] = 'application/json' header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] post_body = nil return @api_client.call_api( :GET, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body, :return_type => 'Array<OCI::ObjectStorage::Models::BucketSummary>') end |
#list_multipart_upload_parts(namespace_name, bucket_name, object_name, upload_id, opts = {}) ⇒ Response
Lists the parts of an in-progress multipart upload.
809 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 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 809 def list_multipart_upload_parts(namespace_name, bucket_name, object_name, upload_id, opts = {}) logger.debug "Calling operation ObjectStorageClient#list_multipart_upload_parts." if logger fail "Missing the required parameter 'namespace_name' when calling list_multipart_upload_parts." if namespace_name.nil? fail "Missing the required parameter 'bucket_name' when calling list_multipart_upload_parts." if bucket_name.nil? fail "Missing the required parameter 'object_name' when calling list_multipart_upload_parts." if object_name.nil? fail "Missing the required parameter 'upload_id' when calling list_multipart_upload_parts." if upload_id.nil? path = "/n/{namespaceName}/b/{bucketName}/u/{objectName}".sub('{namespaceName}', namespace_name.to_s).sub('{bucketName}', bucket_name.to_s).sub('{objectName}', object_name.to_s) # Query Params query_params = {} query_params[:'uploadId'] = upload_id query_params[:'limit'] = opts[:'limit'] if opts[:'limit'] query_params[:'page'] = opts[:'page'] if opts[:'page'] # Header Params header_params = {} header_params['accept'] = 'application/json' header_params['content-type'] = 'application/json' header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] post_body = nil return @api_client.call_api( :GET, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body, :return_type => 'Array<OCI::ObjectStorage::Models::MultipartUploadPartSummary>') end |
#list_multipart_uploads(namespace_name, bucket_name, opts = {}) ⇒ Response
Lists all in-progress multipart uploads for the given bucket in the given namespace.
855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 855 def list_multipart_uploads(namespace_name, bucket_name, opts = {}) logger.debug "Calling operation ObjectStorageClient#list_multipart_uploads." if logger fail "Missing the required parameter 'namespace_name' when calling list_multipart_uploads." if namespace_name.nil? fail "Missing the required parameter 'bucket_name' when calling list_multipart_uploads." if bucket_name.nil? path = "/n/{namespaceName}/b/{bucketName}/u".sub('{namespaceName}', namespace_name.to_s).sub('{bucketName}', bucket_name.to_s) # Query Params query_params = {} query_params[:'limit'] = opts[:'limit'] if opts[:'limit'] query_params[:'page'] = opts[:'page'] if opts[:'page'] # Header Params header_params = {} header_params['accept'] = 'application/json' header_params['content-type'] = 'application/json' header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] post_body = nil return @api_client.call_api( :GET, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body, :return_type => 'Array<OCI::ObjectStorage::Models::MultipartUpload>') end |
#list_objects(namespace_name, bucket_name, opts = {}) ⇒ Response
Lists the objects in a bucket.
To use this and other API operations, you must be authorized in an IAM policy. If you’re not authorized, talk to an administrator. If you’re an administrator who needs to write policies to give users access, see [Getting Started with Policies](docs.us-phoenix-1.oraclecloud.com/Content/Identity/Concepts/policygetstarted.htm).
915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 915 def list_objects(namespace_name, bucket_name, opts = {}) logger.debug "Calling operation ObjectStorageClient#list_objects." if logger fail "Missing the required parameter 'namespace_name' when calling list_objects." if namespace_name.nil? fail "Missing the required parameter 'bucket_name' when calling list_objects." if bucket_name.nil? if opts[:'fields'] && !['name', 'size', 'timeCreated', 'md5'].include?(opts[:'fields']) fail 'Invalid value for "fields", must be one of name, size, timeCreated, md5.' end path = "/n/{namespaceName}/b/{bucketName}/o".sub('{namespaceName}', namespace_name.to_s).sub('{bucketName}', bucket_name.to_s) # Query Params query_params = {} query_params[:'prefix'] = opts[:'prefix'] if opts[:'prefix'] query_params[:'start'] = opts[:'start'] if opts[:'start'] query_params[:'end'] = opts[:'_end'] if opts[:'_end'] query_params[:'limit'] = opts[:'limit'] if opts[:'limit'] query_params[:'delimiter'] = opts[:'delimiter'] if opts[:'delimiter'] query_params[:'fields'] = opts[:'fields'] if opts[:'fields'] # Header Params header_params = {} header_params['accept'] = 'application/json' header_params['content-type'] = 'application/json' header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] post_body = nil return @api_client.call_api( :GET, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body, :return_type => 'OCI::ObjectStorage::Models::ListObjects') end |
#list_preauthenticated_requests(namespace_name, bucket_name, opts = {}) ⇒ Response
List pre-authenticated requests for the bucket
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 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 967 def list_preauthenticated_requests(namespace_name, bucket_name, opts = {}) logger.debug "Calling operation ObjectStorageClient#list_preauthenticated_requests." if logger fail "Missing the required parameter 'namespace_name' when calling list_preauthenticated_requests." if namespace_name.nil? fail "Missing the required parameter 'bucket_name' when calling list_preauthenticated_requests." if bucket_name.nil? path = "/n/{namespaceName}/b/{bucketName}/p/".sub('{namespaceName}', namespace_name.to_s).sub('{bucketName}', bucket_name.to_s) # Query Params query_params = {} query_params[:'objectNamePrefix'] = opts[:'object_name_prefix'] if opts[:'object_name_prefix'] query_params[:'limit'] = opts[:'limit'] if opts[:'limit'] query_params[:'page'] = opts[:'page'] if opts[:'page'] # Header Params header_params = {} header_params['accept'] = 'application/json' header_params['content-type'] = 'application/json' header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] post_body = nil return @api_client.call_api( :GET, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body, :return_type => 'Array<OCI::ObjectStorage::Models::PreauthenticatedRequestSummary>') end |
#logger ⇒ Logger
Returns The logger for this client. May be nil.
56 57 58 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 56 def logger @api_client.config.logger end |
#put_object(namespace_name, bucket_name, object_name, put_object_body, opts = {}) ⇒ Response
Creates a new object or overwrites an existing one.
To use this and other API operations, you must be authorized in an IAM policy. If you’re not authorized, talk to an administrator. If you’re an administrator who needs to write policies to give users access, see [Getting Started with Policies](docs.us-phoenix-1.oraclecloud.com/Content/Identity/Concepts/policygetstarted.htm).
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 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 1032 def put_object(namespace_name, bucket_name, object_name, put_object_body, opts = {}) logger.debug "Calling operation ObjectStorageClient#put_object." if logger fail "Missing the required parameter 'namespace_name' when calling put_object." if namespace_name.nil? fail "Missing the required parameter 'bucket_name' when calling put_object." if bucket_name.nil? fail "Missing the required parameter 'object_name' when calling put_object." if object_name.nil? fail "Missing the required parameter 'put_object_body' when calling put_object." if put_object_body.nil? path = "/n/{namespaceName}/b/{bucketName}/o/{objectName}".sub('{namespaceName}', namespace_name.to_s).sub('{bucketName}', bucket_name.to_s).sub('{objectName}', object_name.to_s) # Query Params query_params = {} # Header Params header_params = {} header_params['accept'] = 'application/json' header_params[:'if-match'] = opts[:'if_match'] if opts[:'if_match'] header_params[:'if-none-match'] = opts[:'if_none_match'] if opts[:'if_none_match'] header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] header_params[:'Expect'] = opts[:'expect'] if opts[:'expect'] header_params[:'Content-Length'] = opts[:'content_length'] if opts[:'content_length'] header_params[:'Content-MD5'] = opts[:'content_md5'] if opts[:'content_md5'] header_params[:'Content-Type'] = opts[:'content_type'] if opts[:'content_type'] header_params[:'Content-Language'] = opts[:'content_language'] if opts[:'content_language'] header_params[:'Content-Encoding'] = opts[:'content_encoding'] if opts[:'content_encoding'] if opts[:opc_meta] opts[:opc_meta].each do |key, value| header_params["opc-meta-#{key}".to_sym] = value end end post_body = @api_client.object_to_http_body(put_object_body) return @api_client.call_api( :PUT, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body) end |
#update_bucket(namespace_name, bucket_name, update_bucket_details, opts = {}) ⇒ Response
Performs a partial or full update of a bucket’s user-defined metadata.
1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 1089 def update_bucket(namespace_name, bucket_name, update_bucket_details, opts = {}) logger.debug "Calling operation ObjectStorageClient#update_bucket." if logger fail "Missing the required parameter 'namespace_name' when calling update_bucket." if namespace_name.nil? fail "Missing the required parameter 'bucket_name' when calling update_bucket." if bucket_name.nil? fail "Missing the required parameter 'update_bucket_details' when calling update_bucket." if update_bucket_details.nil? path = "/n/{namespaceName}/b/{bucketName}/".sub('{namespaceName}', namespace_name.to_s).sub('{bucketName}', bucket_name.to_s) # Query Params query_params = {} # Header Params header_params = {} header_params['accept'] = 'application/json' header_params['content-type'] = 'application/json' header_params[:'if-match'] = opts[:'if_match'] if opts[:'if_match'] header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] post_body = @api_client.object_to_http_body(update_bucket_details) return @api_client.call_api( :POST, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body, :return_type => 'OCI::ObjectStorage::Models::Bucket') end |
#upload_part(namespace_name, bucket_name, object_name, upload_id, upload_part_num, upload_part_body, opts = {}) ⇒ Response
Uploads a single part of a multipart upload.
1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 |
# File 'lib/oci/object_storage/object_storage_client.rb', line 1147 def upload_part(namespace_name, bucket_name, object_name, upload_id, upload_part_num, upload_part_body, opts = {}) logger.debug "Calling operation ObjectStorageClient#upload_part." if logger fail "Missing the required parameter 'namespace_name' when calling upload_part." if namespace_name.nil? fail "Missing the required parameter 'bucket_name' when calling upload_part." if bucket_name.nil? fail "Missing the required parameter 'object_name' when calling upload_part." if object_name.nil? fail "Missing the required parameter 'upload_id' when calling upload_part." if upload_id.nil? fail "Missing the required parameter 'upload_part_num' when calling upload_part." if upload_part_num.nil? fail "Missing the required parameter 'upload_part_body' when calling upload_part." if upload_part_body.nil? path = "/n/{namespaceName}/b/{bucketName}/u/{objectName}".sub('{namespaceName}', namespace_name.to_s).sub('{bucketName}', bucket_name.to_s).sub('{objectName}', object_name.to_s) # Query Params query_params = {} query_params[:'uploadId'] = upload_id query_params[:'uploadPartNum'] = upload_part_num # Header Params header_params = {} header_params['accept'] = 'application/json' header_params[:'opc-client-request-id'] = opts[:'opc_client_request_id'] if opts[:'opc_client_request_id'] header_params[:'if-match'] = opts[:'if_match'] if opts[:'if_match'] header_params[:'if-none-match'] = opts[:'if_none_match'] if opts[:'if_none_match'] header_params[:'Expect'] = opts[:'expect'] if opts[:'expect'] header_params[:'Content-Length'] = opts[:'content_length'] if opts[:'content_length'] header_params[:'Content-MD5'] = opts[:'content_md5'] if opts[:'content_md5'] post_body = @api_client.object_to_http_body(upload_part_body) return @api_client.call_api( :PUT, path, endpoint, :header_params => header_params, :query_params => query_params, :body => post_body) end |