Skip to content

Commit 8f10e92

Browse files
committed
Fixed unintended non-ASCII char in docs
1 parent 055de16 commit 8f10e92

File tree

4 files changed

+54
-54
lines changed

4 files changed

+54
-54
lines changed

azure-storage-blob/azure/storage/blob/appendblobservice.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,9 @@ def create_blob(self, container_name, blob_name, content_settings=None,
167167
operation if it does exist.
168168
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
169169
Encrypts the data on the service-side with the given key.
170-
Use of customer-provided keys must be done over HTTPS. 
170+
Use of customer-provided keys must be done over HTTPS.
171171
As the encryption key itself is provided in the request,
172-
a secure connection must be established to transfer the key. 
172+
a secure connection must be established to transfer the key.
173173
:param int timeout:
174174
The timeout parameter is expressed in seconds.
175175
:return: ETag and last modified properties for the updated Append Blob
@@ -259,9 +259,9 @@ def append_block(self, container_name, blob_name, block,
259259
operation if it does exist.
260260
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
261261
Encrypts the data on the service-side with the given key.
262-
Use of customer-provided keys must be done over HTTPS. 
262+
Use of customer-provided keys must be done over HTTPS.
263263
As the encryption key itself is provided in the request,
264-
a secure connection must be established to transfer the key. 
264+
a secure connection must be established to transfer the key.
265265
:param int timeout:
266266
The timeout parameter is expressed in seconds.
267267
:return:
@@ -382,9 +382,9 @@ def append_block_from_url(self, container_name, blob_name, copy_source_url, sour
382382
operation if it does exist.
383383
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
384384
Encrypts the data on the service-side with the given key.
385-
Use of customer-provided keys must be done over HTTPS. 
385+
Use of customer-provided keys must be done over HTTPS.
386386
As the encryption key itself is provided in the request,
387-
a secure connection must be established to transfer the key. 
387+
a secure connection must be established to transfer the key.
388388
:param int timeout:
389389
The timeout parameter is expressed in seconds.
390390
"""
@@ -488,7 +488,7 @@ def append_blob_from_path(
488488
operation if it does exist.
489489
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
490490
Encrypts the data on the service-side with the given key.
491-
Use of customer-provided keys must be done over HTTPS. 
491+
Use of customer-provided keys must be done over HTTPS.
492492
As the encryption key itself is provided in the request,
493493
a secure connection must be established to transfer the key.
494494
:return: ETag and last modified properties for the Append Blob
@@ -584,7 +584,7 @@ def append_blob_from_bytes(
584584
operation if it does exist.
585585
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
586586
Encrypts the data on the service-side with the given key.
587-
Use of customer-provided keys must be done over HTTPS. 
587+
Use of customer-provided keys must be done over HTTPS.
588588
As the encryption key itself is provided in the request,
589589
a secure connection must be established to transfer the key.
590590
:return: ETag and last modified properties for the Append Blob
@@ -686,7 +686,7 @@ def append_blob_from_text(
686686
operation if it does exist.
687687
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
688688
Encrypts the data on the service-side with the given key.
689-
Use of customer-provided keys must be done over HTTPS. 
689+
Use of customer-provided keys must be done over HTTPS.
690690
As the encryption key itself is provided in the request,
691691
a secure connection must be established to transfer the key.
692692
:return: ETag and last modified properties for the Append Blob
@@ -783,7 +783,7 @@ def append_blob_from_stream(
783783
operation if it does exist.
784784
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
785785
Encrypts the data on the service-side with the given key.
786-
Use of customer-provided keys must be done over HTTPS. 
786+
Use of customer-provided keys must be done over HTTPS.
787787
As the encryption key itself is provided in the request,
788788
a secure connection must be established to transfer the key.
789789
:return: ETag and last modified properties for the Append Blob

azure-storage-blob/azure/storage/blob/baseblobservice.py

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1625,9 +1625,9 @@ def get_blob_properties(
16251625
operation if it does exist.
16261626
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
16271627
Decrypts the data on the service-side with the given key.
1628-
Use of customer-provided keys must be done over HTTPS. 
1628+
Use of customer-provided keys must be done over HTTPS.
16291629
As the encryption key itself is provided in the request,
1630-
a secure connection must be established to transfer the key. 
1630+
a secure connection must be established to transfer the key.
16311631
:param int timeout:
16321632
The timeout parameter is expressed in seconds.
16331633
:return: a blob object including properties and metadata.
@@ -1692,7 +1692,7 @@ def set_blob_properties(
16921692
operation if it does exist.
16931693
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
16941694
Encrypts the data on the service-side with the given key.
1695-
Use of customer-provided keys must be done over HTTPS. 
1695+
Use of customer-provided keys must be done over HTTPS.
16961696
As the encryption key itself is provided in the request,
16971697
a secure connection must be established to transfer the key.
16981698
:param int timeout:
@@ -1822,9 +1822,9 @@ def _get_blob(
18221822
operation if it does exist.
18231823
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
18241824
Decrypts the data on the service-side with the given key.
1825-
Use of customer-provided keys must be done over HTTPS. 
1825+
Use of customer-provided keys must be done over HTTPS.
18261826
As the encryption key itself is provided in the request,
1827-
a secure connection must be established to transfer the key. 
1827+
a secure connection must be established to transfer the key.
18281828
:param int timeout:
18291829
The timeout parameter is expressed in seconds.
18301830
:return: A Blob with content, properties, and metadata.
@@ -1972,9 +1972,9 @@ def get_blob_to_path(
19721972
operation if it does exist.
19731973
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
19741974
Decrypts the data on the service-side with the given key.
1975-
Use of customer-provided keys must be done over HTTPS. 
1975+
Use of customer-provided keys must be done over HTTPS.
19761976
As the encryption key itself is provided in the request,
1977-
a secure connection must be established to transfer the key. 
1977+
a secure connection must be established to transfer the key.
19781978
:param int timeout:
19791979
The timeout parameter is expressed in seconds. This method may make
19801980
multiple calls to the Azure service and the timeout will apply to
@@ -2098,9 +2098,9 @@ def get_blob_to_stream(
20982098
operation if it does exist.
20992099
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
21002100
Decrypts the data on the service-side with the given key.
2101-
Use of customer-provided keys must be done over HTTPS. 
2101+
Use of customer-provided keys must be done over HTTPS.
21022102
As the encryption key itself is provided in the request,
2103-
a secure connection must be established to transfer the key. 
2103+
a secure connection must be established to transfer the key.
21042104
:param int timeout:
21052105
The timeout parameter is expressed in seconds. This method may make
21062106
multiple calls to the Azure service and the timeout will apply to
@@ -2332,9 +2332,9 @@ def get_blob_to_bytes(
23322332
operation if it does exist.
23332333
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
23342334
Decrypts the data on the service-side with the given key.
2335-
Use of customer-provided keys must be done over HTTPS. 
2335+
Use of customer-provided keys must be done over HTTPS.
23362336
As the encryption key itself is provided in the request,
2337-
a secure connection must be established to transfer the key. 
2337+
a secure connection must be established to transfer the key.
23382338
:param int timeout:
23392339
The timeout parameter is expressed in seconds. This method may make
23402340
multiple calls to the Azure service and the timeout will apply to
@@ -2453,9 +2453,9 @@ def get_blob_to_text(
24532453
operation if it does exist.
24542454
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
24552455
Decrypts the data on the service-side with the given key.
2456-
Use of customer-provided keys must be done over HTTPS. 
2456+
Use of customer-provided keys must be done over HTTPS.
24572457
As the encryption key itself is provided in the request,
2458-
a secure connection must be established to transfer the key. 
2458+
a secure connection must be established to transfer the key.
24592459
:param int timeout:
24602460
The timeout parameter is expressed in seconds. This method may make
24612461
multiple calls to the Azure service and the timeout will apply to
@@ -2527,9 +2527,9 @@ def get_blob_metadata(
25272527
operation if it does exist.
25282528
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
25292529
Decrypts the data on the service-side with the given key.
2530-
Use of customer-provided keys must be done over HTTPS. 
2530+
Use of customer-provided keys must be done over HTTPS.
25312531
As the encryption key itself is provided in the request,
2532-
a secure connection must be established to transfer the key. 
2532+
a secure connection must be established to transfer the key.
25332533
:param int timeout:
25342534
The timeout parameter is expressed in seconds.
25352535
:return:
@@ -2599,7 +2599,7 @@ def set_blob_metadata(self, container_name, blob_name,
25992599
operation if it does exist.
26002600
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
26012601
Encrypts the data on the service-side with the given key.
2602-
Use of customer-provided keys must be done over HTTPS. 
2602+
Use of customer-provided keys must be done over HTTPS.
26032603
As the encryption key itself is provided in the request,
26042604
a secure connection must be established to transfer the key.
26052605
:param int timeout:
@@ -3079,9 +3079,9 @@ def snapshot_blob(self, container_name, blob_name,
30793079
Required if the blob has an active lease.
30803080
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
30813081
Encrypts the data on the service-side with the given key.
3082-
Use of customer-provided keys must be done over HTTPS. 
3082+
Use of customer-provided keys must be done over HTTPS.
30833083
As the encryption key itself is provided in the request,
3084-
a secure connection must be established to transfer the key. 
3084+
a secure connection must be established to transfer the key.
30853085
:param int timeout:
30863086
The timeout parameter is expressed in seconds.
30873087
:return: snapshot properties

azure-storage-blob/azure/storage/blob/blockblobservice.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,9 @@ def put_block(self, container_name, blob_name, block, block_id,
176176
Required if the blob has an active lease.
177177
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
178178
Encrypts the data on the service-side with the given key.
179-
Use of customer-provided keys must be done over HTTPS. 
179+
Use of customer-provided keys must be done over HTTPS.
180180
As the encryption key itself is provided in the request,
181-
a secure connection must be established to transfer the key. 
181+
a secure connection must be established to transfer the key.
182182
:param int timeout:
183183
The timeout parameter is expressed in seconds.
184184
'''
@@ -256,9 +256,9 @@ def put_block_list(
256256
operation if it does exist.
257257
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
258258
Encrypts the data on the service-side with the given key.
259-
Use of customer-provided keys must be done over HTTPS. 
259+
Use of customer-provided keys must be done over HTTPS.
260260
As the encryption key itself is provided in the request,
261-
a secure connection must be established to transfer the key. 
261+
a secure connection must be established to transfer the key.
262262
:param int timeout:
263263
The timeout parameter is expressed in seconds.
264264
:param StandardBlobTier standard_blob_tier:
@@ -361,9 +361,9 @@ def put_block_from_url(self, container_name, blob_name, copy_source_url, block_i
361361
Required if the blob has an active lease.
362362
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
363363
Encrypts the data on the service-side with the given key.
364-
Use of customer-provided keys must be done over HTTPS. 
364+
Use of customer-provided keys must be done over HTTPS.
365365
As the encryption key itself is provided in the request,
366-
a secure connection must be established to transfer the key. 
366+
a secure connection must be established to transfer the key.
367367
:param int timeout:
368368
The timeout parameter is expressed in seconds.
369369
"""
@@ -462,7 +462,7 @@ def create_blob_from_path(self, container_name, blob_name, file_path, content_se
462462
operation if it does exist.
463463
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
464464
Encrypts the data on the service-side with the given key.
465-
Use of customer-provided keys must be done over HTTPS. 
465+
Use of customer-provided keys must be done over HTTPS.
466466
As the encryption key itself is provided in the request,
467467
a secure connection must be established to transfer the key.
468468
:param int timeout:
@@ -556,7 +556,7 @@ def create_blob_from_stream(self, container_name, blob_name, stream, count=None,
556556
operation if it does exist.
557557
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
558558
Encrypts the data on the service-side with the given key.
559-
Use of customer-provided keys must be done over HTTPS. 
559+
Use of customer-provided keys must be done over HTTPS.
560560
As the encryption key itself is provided in the request,
561561
a secure connection must be established to transfer the key.
562562
:param int timeout:
@@ -765,7 +765,7 @@ def create_blob_from_bytes(self, container_name, blob_name, blob, index=0, count
765765
operation if it does exist.
766766
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
767767
Encrypts the data on the service-side with the given key.
768-
Use of customer-provided keys must be done over HTTPS. 
768+
Use of customer-provided keys must be done over HTTPS.
769769
As the encryption key itself is provided in the request,
770770
a secure connection must be established to transfer the key.
771771
:param int timeout:
@@ -863,7 +863,7 @@ def create_blob_from_text(self, container_name, blob_name, text, encoding='utf-8
863863
operation if it does exist.
864864
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
865865
Encrypts the data on the service-side with the given key.
866-
Use of customer-provided keys must be done over HTTPS. 
866+
Use of customer-provided keys must be done over HTTPS.
867867
As the encryption key itself is provided in the request,
868868
a secure connection must be established to transfer the key.
869869
:param int timeout:
@@ -1212,9 +1212,9 @@ def _put_blob(self, container_name, blob_name, blob, content_settings=None,
12121212
operation if it does exist.
12131213
:param ~azure.storage.blob.models.CustomerProvidedEncryptionKey cpk:
12141214
Encrypts the data on the service-side with the given key.
1215-
Use of customer-provided keys must be done over HTTPS. 
1215+
Use of customer-provided keys must be done over HTTPS.
12161216
As the encryption key itself is provided in the request,
1217-
a secure connection must be established to transfer the key. 
1217+
a secure connection must be established to transfer the key.
12181218
:param int timeout:
12191219
The timeout parameter is expressed in seconds.
12201220
:param StandardBlobTier standard_blob_tier:

0 commit comments

Comments
 (0)