File tree Expand file tree Collapse file tree 7 files changed +13
-13
lines changed Expand file tree Collapse file tree 7 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -118,14 +118,14 @@ Create a new Blob Storage container in an Azure storage account.
118
118
119
119
* Run the code.
120
120
121
- You must provide 1 parameter:
121
+ You must provide 1 parameter, replace the value of :
122
122
123
- * `<CONTAINER_NAME>` = Name of the container
123
+ * `<CONTAINER_NAME>` by name of the container.
124
124
125
125
Run application:
126
126
127
127
```bash
128
- python blobstoragecreate.py container-example
128
+ python blobstoragecreate.py <CONTAINER_NAME>
129
129
```
130
130
131
131
* Test the application.
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ def load_cfg():
30
30
31
31
def create_container (storage_account_conn_str , container_name ):
32
32
"""
33
- Create a new Blob Storage container
33
+ Create a new Blob Storage container.
34
34
"""
35
35
# Create the BlobServiceClient object which will be used to create a container client
36
36
blob_service_client = BlobServiceClient .from_connection_string (storage_account_conn_str )
Original file line number Diff line number Diff line change @@ -118,14 +118,14 @@ Delete a Blob Storage container in an Azure storage account.
118
118
119
119
* Run the code.
120
120
121
- You must provide 1 parameter:
121
+ You must provide 1 parameter, replace the value of :
122
122
123
- * `<CONTAINER_NAME>` = Name of the container
123
+ * `<CONTAINER_NAME>` by name of the container
124
124
125
125
Run application:
126
126
127
127
```bash
128
- python blobstoragedelete.py container-example
128
+ python blobstoragedelete.py <CONTAINER_NAME>
129
129
```
130
130
131
131
* Test the application.
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ def load_cfg():
30
30
31
31
def delete_container (storage_account_conn_str , container_name ):
32
32
"""
33
- Delete a Blob Storage container
33
+ Delete a Blob Storage container.
34
34
"""
35
35
try :
36
36
# Create the container object
Original file line number Diff line number Diff line change @@ -118,14 +118,14 @@ List information about the blobs in a Blob Storage container in an Azure storage
118
118
119
119
* Run the code.
120
120
121
- You must provide 1 parameter:
121
+ You must provide 1 parameter, replace the value of :
122
122
123
- * `<CONTAINER_NAME>` = Name of the container
123
+ * `<CONTAINER_NAME>` by name of the container.
124
124
125
125
Run application:
126
126
127
127
```bash
128
- python blobstoragelist.py container-example
128
+ python blobstoragelist.py <CONTAINER_NAME>
129
129
```
130
130
131
131
* Test the application.
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ def load_cfg():
30
30
31
31
def list_container_blobs (storage_account_conn_str , container_name ):
32
32
"""
33
- List the blobs in a container in a storage account
33
+ List the blobs in a container in a storage account.
34
34
"""
35
35
try :
36
36
# Create the container object
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ def load_cfg():
28
28
29
29
def list_containers (storage_account_conn_str ):
30
30
"""
31
- List the containers and the blobs they contain in a storage account
31
+ List the containers and the blobs they contain in a storage account.
32
32
"""
33
33
# Create the BlobServiceClient object which will be used to create a container client
34
34
blob_service_client = BlobServiceClient .from_connection_string (storage_account_conn_str )
You can’t perform that action at this time.
0 commit comments