You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: azureblobstoragecopy/README.md
+17-23
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,9 @@ Copy a Blob from a Blob Storage container to another Blob Storage container in a
8
8
9
9
* You must have a [Microsoft Azure](https://azure.microsoft.com/) subscription.
10
10
11
-
* You must have an Azure storage account.
11
+
* You must have the following installed:
12
+
* Python 3
13
+
* Azure CLI
12
14
13
15
* The code was written for:
14
16
* Python 3
@@ -24,37 +26,29 @@ Copy a Blob from a Blob Storage container to another Blob Storage container in a
24
26
25
27
## Using the code
26
28
27
-
* Configure your Azure access.
28
-
29
-
You must create an Azure AD service principal in order to enable application to connect resources into Azure. The service principal grants your application to manage resources in your Azure subscription.
29
+
* Sign in Azure (Interactively).
30
30
31
-
The Azure SDKs Libraries for Java allow you to use several authentication schemes.
31
+
The Azure CLI's default authentication method for logins uses a web browser and access token to sign in.
32
32
33
-
The application uses an authentication file for authenticating.
33
+
1. Run the Azure CLI login command.
34
34
35
-
The credentials are taken from `AZURE_AUTH_LOCATION` environment variable.
35
+
```bash
36
+
az login
37
+
```
36
38
37
-
You can create a service principal and generate this file using Azure CLI 2.0 or using the Azure cloud shell.
39
+
If the CLI can open your default browser, it will do so and load an Azure sign-in page.
38
40
39
-
* Make sure you select your subscription by:
41
+
Otherwise, open a browser page at https://aka.ms/devicelogin and enter the authorization code displayed in your terminal.
40
42
41
-
```bash
42
-
az account set --subscription <name or id>
43
-
```
43
+
If no web browser is available or the web browser fails to open, use device code flow with az login --use-device-code.
44
44
45
-
and you have the privileges to create service principals.
45
+
2. Sign in with your account credentials in the browser.
46
46
47
-
* Execute the following commandfor creating the service principal and the authentication file:
48
-
49
-
```bash
50
-
az ad sp create-for-rbac --sdk-auth > my.azureauth
51
-
```
52
-
53
-
* Set the `AZURE_AUTH_LOCATION` environment variable in your Operating System with the path of your authentication file.
Copy file name to clipboardexpand all lines: azureblobstoragecreate/README.md
+17-23
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,9 @@ Create a new Blob Storage container in an Azure storage account.
8
8
9
9
* You must have a [Microsoft Azure](https://azure.microsoft.com/) subscription.
10
10
11
-
* You must have an Azure storage account.
11
+
* You must have the following installed:
12
+
* Python 3
13
+
* Azure CLI
12
14
13
15
* The code was written for:
14
16
* Python 3
@@ -24,37 +26,29 @@ Create a new Blob Storage container in an Azure storage account.
24
26
25
27
## Using the code
26
28
27
-
* Configure your Azure access.
28
-
29
-
You must create an Azure AD service principal in order to enable application to connect resources into Azure. The service principal grants your application to manage resources in your Azure subscription.
29
+
* Sign in Azure (Interactively).
30
30
31
-
The Azure SDKs Libraries for Java allow you to use several authentication schemes.
31
+
The Azure CLI's default authentication method for logins uses a web browser and access token to sign in.
32
32
33
-
The application uses an authentication file for authenticating.
33
+
1. Run the Azure CLI login command.
34
34
35
-
The credentials are taken from `AZURE_AUTH_LOCATION` environment variable.
35
+
```bash
36
+
az login
37
+
```
36
38
37
-
You can create a service principal and generate this file using Azure CLI 2.0 or using the Azure cloud shell.
39
+
If the CLI can open your default browser, it will do so and load an Azure sign-in page.
38
40
39
-
* Make sure you select your subscription by:
41
+
Otherwise, open a browser page at https://aka.ms/devicelogin and enter the authorization code displayed in your terminal.
40
42
41
-
```bash
42
-
az account set --subscription <name or id>
43
-
```
43
+
If no web browser is available or the web browser fails to open, use device code flow with az login --use-device-code.
44
44
45
-
and you have the privileges to create service principals.
45
+
2. Sign in with your account credentials in the browser.
46
46
47
-
* Execute the following commandfor creating the service principal and the authentication file:
48
-
49
-
```bash
50
-
az ad sp create-for-rbac --sdk-auth > my.azureauth
51
-
```
52
-
53
-
* Set the `AZURE_AUTH_LOCATION` environment variable in your Operating System with the path of your authentication file.
Copy file name to clipboardexpand all lines: azureblobstoragedelete/README.md
+17-23
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,9 @@ Delete a Blob Storage container in an Azure storage account.
8
8
9
9
* You must have a [Microsoft Azure](https://azure.microsoft.com/) subscription.
10
10
11
-
* You must have an Azure storage account.
11
+
* You must have the following installed:
12
+
* Python 3
13
+
* Azure CLI
12
14
13
15
* The code was written for:
14
16
* Python 3
@@ -24,37 +26,29 @@ Delete a Blob Storage container in an Azure storage account.
24
26
25
27
## Using the code
26
28
27
-
* Configure your Azure access.
28
-
29
-
You must create an Azure AD service principal in order to enable application to connect resources into Azure. The service principal grants your application to manage resources in your Azure subscription.
29
+
* Sign in Azure (Interactively).
30
30
31
-
The Azure SDKs Libraries for Java allow you to use several authentication schemes.
31
+
The Azure CLI's default authentication method for logins uses a web browser and access token to sign in.
32
32
33
-
The application uses an authentication file for authenticating.
33
+
1. Run the Azure CLI login command.
34
34
35
-
The credentials are taken from `AZURE_AUTH_LOCATION` environment variable.
35
+
```bash
36
+
az login
37
+
```
36
38
37
-
You can create a service principal and generate this file using Azure CLI 2.0 or using the Azure cloud shell.
39
+
If the CLI can open your default browser, it will do so and load an Azure sign-in page.
38
40
39
-
* Make sure you select your subscription by:
41
+
Otherwise, open a browser page at https://aka.ms/devicelogin and enter the authorization code displayed in your terminal.
40
42
41
-
```bash
42
-
az account set --subscription <name or id>
43
-
```
43
+
If no web browser is available or the web browser fails to open, use device code flow with az login --use-device-code.
44
44
45
-
and you have the privileges to create service principals.
45
+
2. Sign in with your account credentials in the browser.
46
46
47
-
* Execute the following commandfor creating the service principal and the authentication file:
48
-
49
-
```bash
50
-
az ad sp create-for-rbac --sdk-auth > my.azureauth
51
-
```
52
-
53
-
* Set the `AZURE_AUTH_LOCATION` environment variable in your Operating System with the path of your authentication file.
Copy file name to clipboardexpand all lines: azureblobstoragedeleteobject/README.md
+17-23
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,9 @@ Delete a Blob in a Blob Storage container in an Azure storage account.
8
8
9
9
* You must have a [Microsoft Azure](https://azure.microsoft.com/) subscription.
10
10
11
-
* You must have an Azure storage account.
11
+
* You must have the following installed:
12
+
* Python 3
13
+
* Azure CLI
12
14
13
15
* The code was written for:
14
16
* Python 3
@@ -24,37 +26,29 @@ Delete a Blob in a Blob Storage container in an Azure storage account.
24
26
25
27
## Using the code
26
28
27
-
* Configure your Azure access.
28
-
29
-
You must create an Azure AD service principal in order to enable application to connect resources into Azure. The service principal grants your application to manage resources in your Azure subscription.
29
+
* Sign in Azure (Interactively).
30
30
31
-
The Azure SDKs Libraries for Java allow you to use several authentication schemes.
31
+
The Azure CLI's default authentication method for logins uses a web browser and access token to sign in.
32
32
33
-
The application uses an authentication file for authenticating.
33
+
1. Run the Azure CLI login command.
34
34
35
-
The credentials are taken from `AZURE_AUTH_LOCATION` environment variable.
35
+
```bash
36
+
az login
37
+
```
36
38
37
-
You can create a service principal and generate this file using Azure CLI 2.0 or using the Azure cloud shell.
39
+
If the CLI can open your default browser, it will do so and load an Azure sign-in page.
38
40
39
-
* Make sure you select your subscription by:
41
+
Otherwise, open a browser page at https://aka.ms/devicelogin and enter the authorization code displayed in your terminal.
40
42
41
-
```bash
42
-
az account set --subscription <name or id>
43
-
```
43
+
If no web browser is available or the web browser fails to open, use device code flow with az login --use-device-code.
44
44
45
-
and you have the privileges to create service principals.
45
+
2. Sign in with your account credentials in the browser.
46
46
47
-
* Execute the following commandfor creating the service principal and the authentication file:
48
-
49
-
```bash
50
-
az ad sp create-for-rbac --sdk-auth > my.azureauth
51
-
```
52
-
53
-
* Set the `AZURE_AUTH_LOCATION` environment variable in your Operating System with the path of your authentication file.
Copy file name to clipboardexpand all lines: azureblobstoragedownload/README.md
+17-23
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,9 @@ Download a file from a Blob Storage container in an Azure storage account.
8
8
9
9
* You must have a [Microsoft Azure](https://azure.microsoft.com/) subscription.
10
10
11
-
* You must have an Azure storage account.
11
+
* You must have the following installed:
12
+
* Python 3
13
+
* Azure CLI
12
14
13
15
* The code was written for:
14
16
* Python 3
@@ -24,37 +26,29 @@ Download a file from a Blob Storage container in an Azure storage account.
24
26
25
27
## Using the code
26
28
27
-
* Configure your Azure access.
28
-
29
-
You must create an Azure AD service principal in order to enable application to connect resources into Azure. The service principal grants your application to manage resources in your Azure subscription.
29
+
* Sign in Azure (Interactively).
30
30
31
-
The Azure SDKs Libraries for Java allow you to use several authentication schemes.
31
+
The Azure CLI's default authentication method for logins uses a web browser and access token to sign in.
32
32
33
-
The application uses an authentication file for authenticating.
33
+
1. Run the Azure CLI login command.
34
34
35
-
The credentials are taken from `AZURE_AUTH_LOCATION` environment variable.
35
+
```bash
36
+
az login
37
+
```
36
38
37
-
You can create a service principal and generate this file using Azure CLI 2.0 or using the Azure cloud shell.
39
+
If the CLI can open your default browser, it will do so and load an Azure sign-in page.
38
40
39
-
* Make sure you select your subscription by:
41
+
Otherwise, open a browser page at https://aka.ms/devicelogin and enter the authorization code displayed in your terminal.
40
42
41
-
```bash
42
-
az account set --subscription <name or id>
43
-
```
43
+
If no web browser is available or the web browser fails to open, use device code flow with az login --use-device-code.
44
44
45
-
and you have the privileges to create service principals.
45
+
2. Sign in with your account credentials in the browser.
46
46
47
-
* Execute the following commandfor creating the service principal and the authentication file:
48
-
49
-
```bash
50
-
az ad sp create-for-rbac --sdk-auth > my.azureauth
51
-
```
52
-
53
-
* Set the `AZURE_AUTH_LOCATION` environment variable in your Operating System with the path of your authentication file.
Copy file name to clipboardexpand all lines: azureblobstoragelist/README.md
+17-23
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,9 @@ List information about the blobs in a Blob Storage container in an Azure storage
8
8
9
9
* You must have a [Microsoft Azure](https://azure.microsoft.com/) subscription.
10
10
11
-
* You must have an Azure storage account.
11
+
* You must have the following installed:
12
+
* Python 3
13
+
* Azure CLI
12
14
13
15
* The code was written for:
14
16
* Python 3
@@ -24,37 +26,29 @@ List information about the blobs in a Blob Storage container in an Azure storage
24
26
25
27
## Using the code
26
28
27
-
* Configure your Azure access.
28
-
29
-
You must create an Azure AD service principal in order to enable application to connect resources into Azure. The service principal grants your application to manage resources in your Azure subscription.
29
+
* Sign in Azure (Interactively).
30
30
31
-
The Azure SDKs Libraries for Java allow you to use several authentication schemes.
31
+
The Azure CLI's default authentication method for logins uses a web browser and access token to sign in.
32
32
33
-
The application uses an authentication file for authenticating.
33
+
1. Run the Azure CLI login command.
34
34
35
-
The credentials are taken from `AZURE_AUTH_LOCATION` environment variable.
35
+
```bash
36
+
az login
37
+
```
36
38
37
-
You can create a service principal and generate this file using Azure CLI 2.0 or using the Azure cloud shell.
39
+
If the CLI can open your default browser, it will do so and load an Azure sign-in page.
38
40
39
-
* Make sure you select your subscription by:
41
+
Otherwise, open a browser page at https://aka.ms/devicelogin and enter the authorization code displayed in your terminal.
40
42
41
-
```bash
42
-
az account set --subscription <name or id>
43
-
```
43
+
If no web browser is available or the web browser fails to open, use device code flow with az login --use-device-code.
44
44
45
-
and you have the privileges to create service principals.
45
+
2. Sign in with your account credentials in the browser.
46
46
47
-
* Execute the following commandfor creating the service principal and the authentication file:
48
-
49
-
```bash
50
-
az ad sp create-for-rbac --sdk-auth > my.azureauth
51
-
```
52
-
53
-
* Set the `AZURE_AUTH_LOCATION` environment variable in your Operating System with the path of your authentication file.
0 commit comments