Skip to content

Commit 2c851e4

Browse files
authored
Merge pull request #192952 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 4f0a6b1 + e17b7bf commit 2c851e4

File tree

41 files changed

+88
-88
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+88
-88
lines changed

articles/active-directory/managed-identities-azure-resources/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
- name: Python
138138
href: /python/api/overview/azure/identity-readme
139139
- name: Go
140-
href: https://golang.org/doc/
140+
href: https://go.dev/doc/
141141
- name: Resources
142142
items:
143143
- name: Frequently asked questions

articles/azure-arc/data/managed-instance-high-availability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ Additional steps are required to restore a database into an availability group.
278278
Add the database backup file into the primary instance container.
279279

280280
```console
281-
kubectl cp <source file location> <pod name>:var/opt/mssql/data/<file name> -n <namespace name>
281+
kubectl cp <source file location> <pod name>:var/opt/mssql/data/<file name> -c <serviceName> -n <namespaceName>
282282
```
283283

284284
Example

articles/azure-cache-for-redis/cache-go-get-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you want to skip straight to the code, see the [Go quickstart](https://github
2222
## Prerequisites
2323

2424
- Azure subscription - [create one for free](https://azure.microsoft.com/free/)
25-
- [Go](https://golang.org/doc/install) (preferably version 1.13 or above)
25+
- [Go](https://go.dev/doc/install) (preferably version 1.13 or above)
2626
- [Git](https://git-scm.com/downloads)
2727
- An HTTP client such [curl](https://curl.se/)
2828

@@ -47,7 +47,7 @@ func main() {
4747
...
4848
```
4949
50-
Then, we establish connection with Azure Cache for Redis. We use [tls.Config](https://golang.org/pkg/crypto/tls/#Config)--Azure Cache for Redis only accepts secure connections with [TLS 1.2 as the minimum required version](cache-remove-tls-10-11.md).
50+
Then, we establish connection with Azure Cache for Redis. We use [tls.Config](https://go.dev/pkg/crypto/tls/#Config)--Azure Cache for Redis only accepts secure connections with [TLS 1.2 as the minimum required version](cache-remove-tls-10-11.md).
5151
5252
```go
5353
...
@@ -62,7 +62,7 @@ if err != nil {
6262
...
6363
```
6464
65-
If the connection is successful, [HTTP handlers](https://golang.org/pkg/net/http/#HandleFunc) are configured to handle `POST` and `GET` operations and the HTTP server is started.
65+
If the connection is successful, [HTTP handlers](https://go.dev/pkg/net/http/#HandleFunc) are configured to handle `POST` and `GET` operations and the HTTP server is started.
6666
6767
> [!NOTE]
6868
> [gorilla mux library](https://github.com/gorilla/mux) is used for routing (although it's not strictly necessary and we could have gotten away by using the standard library for this sample application).

articles/azure-functions/create-first-function-vs-code-other.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Before you get started, make sure you have the following requirements in place:
3131

3232
+ The [Azure Functions Core Tools](./functions-run-local.md#v2) version 3.x. Use the `func --version` command to check that it is correctly installed.
3333

34-
+ [Go](https://golang.org/doc/install), latest version recommended. Use the `go version` command to check your version.
34+
+ [Go](https://go.dev/doc/install), latest version recommended. Use the `go version` command to check your version.
3535

3636
# [Rust](#tab/rust)
3737

articles/azure-functions/functions-how-to-use-azure-function-app-settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ Use the following procedure to migrate from a Premium plan to a Consumption plan
180180
1. Run the following command to migrate the existing function app to the new Consumption plan.
181181
182182
```azurecli-interactive
183-
az functionapp update --name <MY_APP_NAME> --resource-group <MY_RESOURCE_GROUP> --plan <NEW_CONSUMPTION_PLAN>
183+
az functionapp update --name <MY_APP_NAME> --resource-group <MY_RESOURCE_GROUP> --plan <NEW_CONSUMPTION_PLAN> --force
184184
```
185185
186186
1. Delete the function app you created in step 1, since you only need the plan that was created to run the existing function app.

articles/azure-functions/ip-addresses.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ For full control over the IP addresses, both inbound and outbound, we recommend
146146

147147
To find out if your function app runs in an App Service Environment:
148148

149-
# [Azure Porta](#tab/portal)
149+
# [Azure portal](#tab/portal)
150150

151151
1. Sign in to the [Azure portal](https://portal.azure.com).
152152
2. Navigate to the function app.

articles/azure-sql/database/connect-query-go.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.date: 04/14/2021
1616
# Quickstart: Use Golang to query a database in Azure SQL Database or Azure SQL Managed Instance
1717
[!INCLUDE[appliesto-sqldb-sqlmi](../includes/appliesto-sqldb-sqlmi.md)]
1818

19-
In this quickstart, you'll use the [Golang](https://godoc.org/github.com/denisenkom/go-mssqldb) programming language to connect to a database in Azure SQL Database or Azure SQL Managed Instance. You'll then run Transact-SQL statements to query and modify data. [Golang](https://golang.org/) is an open-source programming language that makes it easy to build simple, reliable, and efficient software.
19+
In this quickstart, you'll use the [Golang](https://godoc.org/github.com/denisenkom/go-mssqldb) programming language to connect to a database in Azure SQL Database or Azure SQL Managed Instance. You'll then run Transact-SQL statements to query and modify data. [Golang](https://go.dev/) is an open-source programming language that makes it easy to build simple, reliable, and efficient software.
2020

2121
## Prerequisites
2222

@@ -107,7 +107,7 @@ Get the connection information you need to connect to the database. You'll need
107107

108108
1. Create a file named **sample.go** in the **SqlServerSample** folder.
109109

110-
2. In the file, paste this code. Add the values for your server, database, username, and password. This example uses the Golang [context methods](https://golang.org/pkg/context/) to make sure there's an active connection.
110+
2. In the file, paste this code. Add the values for your server, database, username, and password. This example uses the Golang [context methods](https://go.dev/pkg/context/) to make sure there's an active connection.
111111

112112
```go
113113
package main

articles/cognitive-services/Bing-Autosuggest/includes/quickstarts/autosuggest-client-library-go.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Use the Bing Autosuggest client library for Go to get search suggestions based o
1919
## Prerequisites
2020

2121
* An Azure subscription. If you don't already have an Azure subscription, [you can create one for free](https://azure.microsoft.com/free/cognitive-services).
22-
* The latest version of [Go](https://golang.org/dl/).
22+
* The latest version of [Go](https://go.dev/dl/).
2323

2424
Begin using the Bing Autosuggest client library by creating an Azure resource. Choose the resource type below that's right for you:
2525

@@ -76,7 +76,7 @@ In a console window (cmd, PowerShell, Terminal, Bash), create a new workspace fo
7676
* **bin**: This directory contains the binary executable files that are created when you run `go install`.
7777

7878
> [!TIP]
79-
> Learn more about the structure of a [Go workspace](https://golang.org/doc/code.html#Workspaces). This guide includes information for setting `$GOPATH` and `$GOROOT`.
79+
> Learn more about the structure of a [Go workspace](https://go.dev/doc/code.html#Workspaces). This guide includes information for setting `$GOPATH` and `$GOROOT`.
8080
8181
Let's create a workspace called `my-app` and the required sub directories for `src`, `pkg`, and `bin`:
8282

articles/cognitive-services/Bing-News-Search/go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ms.custom: mode-api
2121
This quickstart uses the Go language to call the Bing News Search API. The results include names and URLs of news sources identified by the query string.
2222

2323
## Prerequisites
24-
* Install the [Go binaries](https://golang.org/dl/).
24+
* Install the [Go binaries](https://go.dev/dl/).
2525
* Install the go-spew library to use a deep pretty printer to display the results. Use this command to install the library: `$ go get -u https://github.com/davecgh/go-spew`.
2626

2727
[!INCLUDE [cognitive-services-bing-news-search-signup-requirements](../../../includes/cognitive-services-bing-news-search-signup-requirements.md)]

articles/cognitive-services/Bing-Web-Search/quickstarts/go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Use this quickstart to make your first call to the Bing Web Search API. This Go
2727
## Prerequisites
2828
Here are a few things that you'll need before running this quickstart:
2929

30-
* [Go binaries](https://golang.org/dl/)
30+
* [Go binaries](https://go.dev/dl/)
3131
* A subscription key
3232

3333
[!INCLUDE [bing-web-search-quickstart-signup](../../../../includes/bing-web-search-quickstart-signup.md)]

0 commit comments

Comments
 (0)