1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 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 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 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 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 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 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 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 498 499 500 501 502 503 504 505 506 507 508 509 510 511 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 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566
|
# frozen_string_literal: true
#-------------------------------------------------------------------------
# # Copyright (c) Microsoft and contributors. All rights reserved.
#
# The MIT License(MIT)
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files(the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions :
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#--------------------------------------------------------------------------
module Azure::Storage
module Blob
# Public: Creates a new page blob. Note that calling create_page_blob to create a page
# blob only initializes the blob. To add content to a page blob, call put_blob_pages method.
#
# ==== Attributes
#
# * +container+ - String. The container name.
# * +blob+ - String. The blob name.
# * +length+ - Integer. Specifies the maximum size for the page blob, up to 1 TB.
# The page blob size must be aligned to a 512-byte boundary.
# * +options+ - Hash. Optional parameters.
#
# ==== Options
#
# Accepted key/value pairs in options parameter are:
# * +:transactional_md5+ - String. An MD5 hash of the blob content. This hash is used to verify the integrity of the blob during transport.
# When this header is specified, the storage service checks the hash that has arrived with the one that was sent.
# If the two hashes do not match, the operation will fail with error code 400 (Bad Request).
# * +:content_type+ - String. Content type for the blob. Will be saved with blob.
# * +:content_encoding+ - String. Content encoding for the blob. Will be saved with blob.
# * +:content_language+ - String. Content language for the blob. Will be saved with blob.
# * +:content_md5+ - String. Content MD5 for the blob. Will be saved with blob.
# * +:cache_control+ - String. Cache control for the blob. Will be saved with blob.
# * +:content_disposition+ - String. Conveys additional information about how to process the response payload,
# and also can be used to attach additional metadata
# * +:metadata+ - Hash. Custom metadata values to store with the blob.
# * +:sequence_number+ - Integer. The sequence number is a user-controlled value that you can use to track requests.
# The value of the sequence number must be between 0 and 2^63 - 1.The default value is 0.
# * +:timeout+ - Integer. A timeout in seconds.
# * +:request_id+ - String. Provides a client-generated, opaque value with a 1 KB character limit that is recorded
# in the analytics logs when storage analytics logging is enabled.
# * +:if_modified_since+ - String. A DateTime value. Specify this conditional header to create a new blob
# only if the blob has been modified since the specified date/time. If the blob has not been modified,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_unmodified_since+ - String. A DateTime value. Specify this conditional header to create a new blob
# only if the blob has not been modified since the specified date/time. If the blob has been modified,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_match+ - String. An ETag value. Specify an ETag value for this conditional header to create a new blob
# only if the blob's ETag value matches the value specified. If the values do not match,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_none_match+ - String. An ETag value. Specify an ETag value for this conditional header to create a new blob
# only if the blob's ETag value does not match the value specified. If the values are identical,
# the Blob service returns status code 412 (Precondition Failed).
# * +:lease_id+ - String. Required if the blob has an active lease. To perform this operation on a blob with an active lease,
# specify the valid lease ID for this header.
#
# See http://msdn.microsoft.com/en-us/library/azure/dd179451.aspx
#
# Returns a Blob
def create_page_blob(container, blob, length, options = {})
query = {}
StorageService.with_query query, "timeout", options[:timeout].to_s if options[:timeout]
uri = blob_uri(container, blob, query)
headers = {}
# set x-ms-blob-type to PageBlob
StorageService.with_header headers, "x-ms-blob-type", "PageBlob"
# ensure content-length is 0 and x-ms-blob-content-length is the blob length
StorageService.with_header headers, "Content-Length", 0.to_s
StorageService.with_header headers, "x-ms-blob-content-length", length.to_s
# set x-ms-sequence-number from options (or default to 0)
StorageService.with_header headers, "x-ms-sequence-number", (options[:sequence_number] || 0).to_s
# set the rest of the optional headers
StorageService.with_header headers, "Content-MD5", options[:transactional_md5]
StorageService.with_header headers, "x-ms-blob-content-type", options[:content_type]
StorageService.with_header headers, "x-ms-blob-content-encoding", options[:content_encoding]
StorageService.with_header headers, "x-ms-blob-content-language", options[:content_language]
StorageService.with_header headers, "x-ms-blob-content-md5", options[:content_md5]
StorageService.with_header headers, "x-ms-blob-cache-control", options[:cache_control]
StorageService.with_header headers, "x-ms-blob-content-disposition", options[:content_disposition]
StorageService.add_metadata_to_headers options[:metadata], headers
add_blob_conditional_headers options, headers
headers["x-ms-lease-id"] = options[:lease_id] if options[:lease_id]
headers["x-ms-blob-content-type"] = Default::CONTENT_TYPE_VALUE unless headers["x-ms-blob-content-type"]
# call PutBlob with empty body
response = call(:put, uri, nil, headers, options)
result = Serialization.blob_from_headers(response.headers)
result.name = blob
result.metadata = options[:metadata] if options[:metadata]
result
end
# Public: Creates a range of pages in a page blob.
#
# ==== Attributes
#
# * +container+ - String. Name of container
# * +blob+ - String. Name of blob
# * +start_range+ - Integer. Position of first byte of first page
# * +end_range+ - Integer. Position of last byte of of last page
# * +content+ - IO or String. Content to write. Length in bytes should equal end_range - start_range + 1
# * +options+ - Hash. A collection of options.
#
# ==== Options
#
# Accepted key/value pairs in options parameter are:
# * +:transactional_md5+ - String. An MD5 hash of the page content. This hash is used to verify the integrity of the page during transport.
# When this header is specified, the storage service checks the hash that has arrived with the one that was sent.
# * +:if_sequence_number_le+ - Integer. If the blob's sequence number is less than or equal to the specified value, the request proceeds;
# otherwise it fails with the SequenceNumberConditionNotMet error (HTTP status code 412 - Precondition Failed).
# * +:if_sequence_number_lt+ - Integer. If the blob's sequence number is less than the specified value, the request proceeds;
# otherwise it fails with SequenceNumberConditionNotMet error (HTTP status code 412 - Precondition Failed).
# * +:if_sequence_number_eq+ - Integer. If the blob's sequence number is equal to the specified value, the request proceeds;
# otherwise it fails with SequenceNumberConditionNotMet error (HTTP status code 412 - Precondition Failed).
# * +:if_modified_since+ - String. A DateTime value. Specify this conditional header to write the page only if
# the blob has been modified since the specified date/time. If the blob has not been modified,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_unmodified_since+ - String. A DateTime value. Specify this conditional header to write the page only if
# the blob has not been modified since the specified date/time. If the blob has been modified,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_match+ - String. An ETag value. Specify an ETag value for this conditional header to write the page only if
# the blob's ETag value matches the value specified. If the values do not match,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_none_match+ - String. An ETag value. Specify an ETag value for this conditional header to write the page only if
# the blob's ETag value does not match the value specified. If the values are identical,
# the Blob service returns status code 412 (Precondition Failed).
# * +:timeout+ - Integer. A timeout in seconds.
# * +:request_id+ - String. Provides a client-generated, opaque value with a 1 KB character limit that is recorded
# in the analytics logs when storage analytics logging is enabled.
# * +:lease_id+ - String. Required if the blob has an active lease. To perform this operation on a blob with an active lease,
# specify the valid lease ID for this header.
#
# See http://msdn.microsoft.com/en-us/library/azure/ee691975.aspx
#
# Returns Blob
def put_blob_pages(container, blob, start_range, end_range, content, options = {})
query = { "comp" => "page" }
StorageService.with_query query, "timeout", options[:timeout].to_s if options[:timeout]
uri = blob_uri(container, blob, query)
headers = {}
StorageService.with_header headers, "Content-MD5", options[:transactional_md5]
StorageService.with_header headers, "x-ms-range", "bytes=#{start_range}-#{end_range}"
StorageService.with_header headers, "x-ms-page-write", "update"
# clear default content type
StorageService.with_header headers, "Content-Type", ""
headers["x-ms-lease-id"] = options[:lease_id] if options[:lease_id]
# set optional headers
unless options.empty?
add_blob_conditional_headers options, headers
end
response = call(:put, uri, content, headers, options)
result = Serialization.blob_from_headers(response.headers)
result.name = blob
result
end
# Public: Clears a range of pages from the blob.
#
# ==== Attributes
#
# * +container+ - String. Name of container.
# * +blob+ - String. Name of blob.
# * +start_range+ - Integer. Position of first byte of first page.
# * +end_range+ - Integer. Position of last byte of of last page.
# * +options+ - Hash. Optional parameters.
#
# ==== Options
#
# Accepted key/value pairs in options parameter are:
# * +:timeout+ - Integer. A timeout in seconds.
# * +:request_id+ - String. Provides a client-generated, opaque value with a 1 KB character limit that is recorded
# in the analytics logs when storage analytics logging is enabled.
# * +:if_modified_since+ - String. A DateTime value. Specify this conditional header to clear the page only if
# the blob has been modified since the specified date/time. If the blob has not been modified,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_unmodified_since+ - String. A DateTime value. Specify this conditional header to clear the page only if
# the blob has not been modified since the specified date/time. If the blob has been modified,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_match+ - String. An ETag value. Specify an ETag value for this conditional header to clear the page only if
# the blob's ETag value matches the value specified. If the values do not match,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_none_match+ - String. An ETag value. Specify an ETag value for this conditional header to clear the page only if
# the blob's ETag value does not match the value specified. If the values are identical,
# the Blob service returns status code 412 (Precondition Failed).
#
# See http://msdn.microsoft.com/en-us/library/azure/ee691975.aspx
#
# Returns Blob
def clear_blob_pages(container, blob, start_range, end_range, options = {})
query = { "comp" => "page" }
StorageService.with_query query, "timeout", options[:timeout].to_s if options[:timeout]
uri = blob_uri(container, blob, query)
headers = {}
StorageService.with_header headers, "x-ms-range", "bytes=#{start_range}-#{end_range}"
StorageService.with_header headers, "x-ms-page-write", "clear"
# clear default content type
StorageService.with_header headers, "Content-Type", ""
# set optional headers
unless options.empty?
add_blob_conditional_headers options, headers
end
response = call(:put, uri, nil, headers, options)
result = Serialization.blob_from_headers(response.headers)
result.name = blob
result
end
# Public: Returns a list of active page ranges for a page blob. Active page ranges are
# those that have been populated with data.
#
# ==== Attributes
#
# * +container+ - String. The container name.
# * +blob+ - String. The blob name.
# * +options+ - Hash. Optional parameters.
#
# ==== Options
#
# Accepted key/value pairs in options parameter are:
# * +:start_range+ - Integer. Position of first byte of first page. (optional)
# * +:end_range+ - Integer. Position of last byte of of last page. (optional)
# * +:snapshot+ - String. An opaque DateTime value that specifies the blob snapshot to
# retrieve information from. (optional)
# * +:timeout+ - Integer. A timeout in seconds.
# * +:request_id+ - String. Provides a client-generated, opaque value with a 1 KB character limit that is recorded
# in the analytics logs when storage analytics logging is enabled.
# * +:location_mode+ - LocationMode. Specifies the location mode used to decide
# which location the request should be sent to.
# * +:if_modified_since+ - String. A DateTime value. Specify this conditional header to list the pages only if
# the blob has been modified since the specified date/time. If the blob has not been modified,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_unmodified_since+ - String. A DateTime value. Specify this conditional header to list the pages only if
# the blob has not been modified since the specified date/time. If the blob has been modified,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_match+ - String. An ETag value. Specify an ETag value for this conditional header to list the pages only if
# the blob's ETag value matches the value specified. If the values do not match,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_none_match+ - String. An ETag value. Specify an ETag value for this conditional header to list the pages only if
# the blob's ETag value does not match the value specified. If the values are identical,
# the Blob service returns status code 412 (Precondition Failed).
# * +:previous_snapshot+ - String. An opaque DateTime value that specifies that the response will contain only pages that
# were changed between target blob and previous snapshot. Changed pages include both updated and
# cleared pages. The target blob may be a snapshot, as long as the snapshot specified by this
# is the older of the two.
# * +:lease_id+ - String. If this header is specified, the operation will be performed only if both of the
# following conditions are met:
# - The blob's lease is currently active.
# - The lease ID specified in the request matches that of the blob.
# If this header is specified and both of these conditions are not met, the request will fail
# and the Get Blob operation will fail with status code 412 (Precondition Failed).
#
# See http://msdn.microsoft.com/en-us/library/azure/ee691973.aspx
#
# Returns a list of page ranges in the format [ [start, end], [start, end], ... ]
#
# e.g. [ [0, 511], [512, 1024], ... ]
#
def list_page_blob_ranges(container, blob, options = {})
query = { "comp" => "pagelist" }
query.update("snapshot" => options[:snapshot]) if options[:snapshot]
query.update("prevsnapshot" => options[:previous_snapshot]) if options[:previous_snapshot]
StorageService.with_query query, "timeout", options[:timeout].to_s if options[:timeout]
options[:request_location_mode] = Azure::Storage::Common::RequestLocationMode::PRIMARY_OR_SECONDARY
uri = blob_uri(container, blob, query, options)
options[:start_range] = 0 if options[:end_range] && (not options[:start_range])
headers = {}
StorageService.with_header headers, "x-ms-range", "bytes=#{options[:start_range]}-#{options[:end_range]}" if options[:start_range]
add_blob_conditional_headers options, headers
headers["x-ms-lease-id"] = options[:lease_id] if options[:lease_id]
response = call(:get, uri, nil, headers, options)
pagelist = Serialization.page_list_from_xml(response.body)
pagelist
end
# Public: Resizes a page blob to the specified size.
#
# ==== Attributes
#
# * +container+ - String. The container name.
# * +blob+ - String. The blob name.
# * +size+ - String. The blob size. Resizes a page blob to the specified size.
# If the specified value is less than the current size of the blob,
# then all pages above the specified value are cleared.
# * +options+ - Hash. Optional parameters.
#
# ==== Options
#
# Accepted key/value pairs in options parameter are:
# * +:timeout+ - Integer. A timeout in seconds.
# * +:request_id+ - String. Provides a client-generated, opaque value with a 1 KB character limit that is recorded
# in the analytics logs when storage analytics logging is enabled.
# * +:if_modified_since+ - String. A DateTime value. Specify this conditional header to set the blob properties
# only if the blob has been modified since the specified date/time. If the blob has not been modified,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_unmodified_since+ - String. A DateTime value. Specify this conditional header to set the blob properties
# only if the blob has not been modified since the specified date/time. If the blob has been modified,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_match+ - String. An ETag value. Specify an ETag value for this conditional header to set the blob properties
# only if the blob's ETag value matches the value specified. If the values do not match,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_none_match+ - String. An ETag value. Specify an ETag value for this conditional header to set the blob properties
# only if the blob's ETag value does not match the value specified. If the values are identical,
# the Blob service returns status code 412 (Precondition Failed).
#
# See http://msdn.microsoft.com/en-us/library/azure/ee691966.aspx
#
# Returns nil on success.
def resize_page_blob(container, blob, size, options = {})
options = { content_length: size }.merge(options)
set_blob_properties container, blob, options
end
# Public: Copies a snapshot of the source page blob to a destination page blob. The snapshot is copied such that only
# the differential changes between the previously copied snapshot are transferred to the destination. The copied snapshots
# are complete copies of the original snapshot and can be read or copied from as usual.The destination of an incremental copy
# must either not exist, or must have been created with a previous incremental copy from the same source blob. Once created,
# the destination blob is permanently associated with the source and may only be used for incremental copies. The Get Blob
# Properties and List Blobs APIs indicate whether the blob is an incremental copy blob created in this way. Incremental
# copy blobs may not be downloaded directly. The only supported operations are Get Blob Properties, Incremental Copy Blob,
# and Delete Blob. The copied snapshots may be read and deleted as usual.
#
# ==== Attributes
#
# * +destination_container+ - String. The destination container name to copy to.
# * +destination_blob+ - String. The destination blob name to copy to.
# * +source_uri+ - String. Specifies the URI of the source page blob snapshot.
# This value is a URL of up to 2 KB in length that specifies a page blob snapshot. The
# value should be URL-encoded as it would appear in a request URI. The source blob must
# either be public or must be authenticated via a shared access signature. Here is an
# example of a source blob URL:
# https://myaccount.blob.core.windows.net/mycontainer/myblob?snapshot=<DateTime>
# * +options+ - Hash. Optional parameters.
#
# ==== Options
#
# Accepted key/value pairs in options parameter are:
# * +:metadata+ - Hash. Custom metadata values to store with the copy. If this parameter is not
# specified, the operation will copy the source blob metadata to the destination
# blob. If this parameter is specified, the destination blob is created with the
# specified metadata, and metadata is not copied from the source blob.
# * +:if_modified_since+ - String. A DateTime value. Specify this conditional header to copy the blob only if the
# destination blob has been modified since the specified date/time. If the destination blob
# has not been modified, the Blob service returns status code 412 (Precondition Failed).
# * +:if_unmodified_since+ - String. A DateTime value. Specify this conditional header to copy the blob only if the
# destination blob has not been modified since the specified date/time. If the destination
# blob has been modified, the Blob service returns status code 412 (Precondition Failed).
# * +:if_match+ - String. An ETag value. Specify an ETag value for this conditional header to copy the blob
# only if the specified ETag value matches the ETag value for an existing destination blob.
# If the ETag for the destination blob does not match the ETag specified for If-Match,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_none_match+ - String. An ETag value, or the wildcard character (*). Specify an ETag value for this
# conditional header to copy the blob only if the specified ETag value does not match the
# ETag value for the destination blob. Specify the wildcard character (*) to perform the
# operation only if the destination blob does not exist. If the specified condition isn't met,
# the Blob service returns status code 412 (Precondition Failed).
# * +:timeout+ - Integer. A timeout in seconds.
# * +:request_id+ - String. Provides a client-generated, opaque value with a 1 KB character limit that is recorded
# in the analytics logs when storage analytics logging is enabled.
# * +:lease_id+ - String. If this header is specified, the operation will be performed only if both of the
# following conditions are met:
# - The blob's lease is currently active.
# - The lease ID specified in the request matches that of the blob.
# If this header is specified and both of these conditions are not met, the request will fail
# and the Snapshot Blob operation will fail with status code 412 (Precondition Failed).
#
# See https://docs.microsoft.com/en-us/rest/api/storageservices/incremental-copy-blob
#
# Returns a tuple of (copy_id, copy_status).
#
# * +copy_id+ - String. String identifier for this copy operation. Use with Get Blob Properties to check
# the status of this copy operation, or pass to Abort Copy Blob to abort a pending copy.
# * +copy_status+ - String. State of the copy operation. This is always pending to indicate that the copy has
# started and is in progress.
#
def incremental_copy_blob(destination_container, destination_blob, source_uri, options = {})
# query parameters
query = { Azure::Storage::Common::QueryStringConstants::COMP => Azure::Storage::Common::QueryStringConstants::INCREMENTAL_COPY }
StorageService.with_query query, "timeout", options[:timeout].to_s if options[:timeout]
# URI
uri = blob_uri(destination_container, destination_blob, query)
# headers
headers = {}
StorageService.with_header headers, "x-ms-copy-source", source_uri
unless options.empty?
add_blob_conditional_headers options, headers
StorageService.add_metadata_to_headers options[:metadata], headers
headers["x-ms-lease-id"] = options[:lease_id] if options[:lease_id]
end
response = call(:put, uri, nil, headers, options)
return response.headers["x-ms-copy-id"], response.headers["x-ms-copy-status"]
end
# Public: Sets a page blob's sequence number.
#
# ==== Attributes
#
# * +container+ - String. The container name.
# * +blob+ - String. The blob name.
# * +action+ - Symbol. Indicates how the service should modify the sequence
# number for the blob. Required if :sequence_number is used. This property
# applies to page blobs only.
#
# Specify one of the following options for this property:
#
# * +:max+ - Sets the sequence number to be the higher of the value included with
# the request and the value currently stored for the blob.
# * +:update+ - Sets the sequence number to the value included with the request.
# * +:increment+ - Increments the value of the sequence number by 1. If specifying this
# option, do not include the sequence_number option; doing so will return
# status code 400 (Bad Request).
#
# * +number+ - Integer. Sets the blob's sequence number. The sequence number is a
# user-controlled property that you can use to track requests and manage concurrency
# issues. Required if the 'action' parameter is set to :max or :update.
# This property applies to page blobs only.
#
# Use this together with the 'action' parameter to update the blob's sequence
# number, either to the specified value or to the higher of the values specified with
# the request or currently stored with the blob.
#
# This header should not be specified if the 'action' parameter is set to :increment;
# in this case the service automatically increments the sequence number by one.
#
# To set the sequence number to a value of your choosing, this property must be specified
# together with the 'action' parameter
# * +options+ - Hash. Optional parameters.
#
# ==== Options
#
# Accepted key/value pairs in options parameter are:
# * +:timeout+ - Integer. A timeout in seconds.
# * +:request_id+ - String. Provides a client-generated, opaque value with a 1 KB character limit that is recorded
# in the analytics logs when storage analytics logging is enabled.
# * +:if_modified_since+ - String. A DateTime value. Specify this conditional header to set the blob properties
# only if the blob has been modified since the specified date/time. If the blob has not been modified,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_unmodified_since+ - String. A DateTime value. Specify this conditional header to set the blob properties
# only if the blob has not been modified since the specified date/time. If the blob has been modified,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_match+ - String. An ETag value. Specify an ETag value for this conditional header to set the blob properties
# only if the blob's ETag value matches the value specified. If the values do not match,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_none_match+ - String. An ETag value. Specify an ETag value for this conditional header to set the blob properties
# only if the blob's ETag value does not match the value specified. If the values are identical,
# the Blob service returns status code 412 (Precondition Failed).
#
# See http://msdn.microsoft.com/en-us/library/azure/ee691966.aspx
#
# Returns nil on success.
def set_sequence_number(container, blob, action, number, options = {})
options = { sequence_number_action: action, sequence_number: number }.merge(options)
set_blob_properties container, blob, options
end
# Public: Creates a new page blob filled with given content.
#
# ==== Attributes
#
# * +container+ - String. The container name.
# * +blob+ - String. The blob name.
# * +length+ - Integer. Specifies the maximum size for the page blob, up to 1 TB.
# The page blob size must be aligned to a 512-byte boundary.
# * +content+ - String or IO. The content to put in the page blob.
# * +options+ - Hash. Optional parameters.
#
# ==== Options
#
# Accepted key/value pairs in options parameter are:
# * +:content_type+ - String. Content type for the blob. Will be saved with blob.
# * +:content_encoding+ - String. Content encoding for the blob. Will be saved with blob.
# * +:content_language+ - String. Content language for the blob. Will be saved with blob.
# * +:content_md5+ - String. Content MD5 for the blob. Will be saved with blob.
# * +:cache_control+ - String. Cache control for the blob. Will be saved with blob.
# * +:content_disposition+ - String. Conveys additional information about how to process the response payload,
# and also can be used to attach additional metadata
# * +:metadata+ - Hash. Custom metadata values to store with the blob.
# * +:sequence_number+ - Integer. The sequence number is a user-controlled value that you can use to track requests.
# The value of the sequence number must be between 0 and 2^63 - 1.The default value is 0.
# * +:timeout+ - Integer. A timeout in seconds.
# * +:request_id+ - String. Provides a client-generated, opaque value with a 1 KB character limit that is recorded
# in the analytics logs when storage analytics logging is enabled.
# * +:if_modified_since+ - String. A DateTime value. Specify this conditional header to create a new blob
# only if the blob has been modified since the specified date/time. If the blob has not been modified,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_unmodified_since+ - String. A DateTime value. Specify this conditional header to create a new blob
# only if the blob has not been modified since the specified date/time. If the blob has been modified,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_match+ - String. An ETag value. Specify an ETag value for this conditional header to create a new blob
# only if the blob's ETag value matches the value specified. If the values do not match,
# the Blob service returns status code 412 (Precondition Failed).
# * +:if_none_match+ - String. An ETag value. Specify an ETag value for this conditional header to create a new blob
# only if the blob's ETag value does not match the value specified. If the values are identical,
# the Blob service returns status code 412 (Precondition Failed).
# * +:lease_id+ - String. Required if the blob has an active lease. To perform this operation on a blob with an active lease,
# specify the valid lease ID for this header.
#
# See http://msdn.microsoft.com/en-us/library/azure/dd179451.aspx
#
# Returns a Blob
def create_page_blob_from_content(container, blob, length, content, options = {})
options[:content_type] = get_or_apply_content_type(content, options[:content_type])
create_page_blob(container, blob, length, options)
content = StringIO.new(content) if content.is_a? String
upload_count = (Float(length) / Float(BlobConstants::DEFAULT_WRITE_PAGE_SIZE_IN_BYTES)).ceil
for idx in 0...upload_count
start_range = idx * BlobConstants::DEFAULT_WRITE_PAGE_SIZE_IN_BYTES
end_range = start_range + BlobConstants::DEFAULT_WRITE_PAGE_SIZE_IN_BYTES - 1
end_range = (length - 1) if end_range > (length - 1)
put_blob_pages(container, blob, start_range, end_range, content.read(BlobConstants::DEFAULT_WRITE_PAGE_SIZE_IN_BYTES), lease_id: options[:lease_id])
end
get_properties_options = {}
get_properties_options[:lease_id] = options[:lease_id] if options[:lease_id]
# Get the blob properties
get_blob_properties(container, blob, get_properties_options)
end
end
end
|