Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: some doc link and placeholder fix #16850

Merged
merged 1 commit into from
Jan 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Azure provides several other packages for using services from Go, listed below.

More code samples for using the management library for Go SDK can be found in the following locations
- [Go SDK Code Samples Repo](https://github.com/azure-samples/azure-sdk-for-go-samples)
- Example files under each package. For example, examples for Network packages can be [found here](https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/resourcemanager/network/armnetwork/example_networkinterfaces_test.go)
- Example files under each package. For example, examples for Network packages can be [found here](https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/resourcemanager/network/armnetwork/ze_generated_example_loadbalancernetworkinterfaces_client_test.go)

## Reporting security issues and security bugs

Expand Down
2 changes: 1 addition & 1 deletion documentation/new-version-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ For more advanced usage of LRO and design guidelines of LRO, please visit [this

More code samples for using the management library for Go SDK can be found in the following locations
- [Go SDK Code Samples](https://aka.ms/azsdk/go/mgmt/samples)
- Example files under each package. For example, examples for Network packages can be [found here](https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/resourcemanager/network/armnetwork/example_networkinterfaces_test.go)
- Example files under each package. For example, examples for Network packages can be [found here](https://github.com/Azure/azure-sdk-for-go/blob/main/sdk/resourcemanager/network/armnetwork/ze_generated_example_loadbalancernetworkinterfaces_client_test.go)

Need help?
----------
Expand Down
4 changes: 2 additions & 2 deletions sdk/resourcemanager/aad/armaad/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ For more information on authentication, please see the documentation for `aziden
Azure Active Directory modules consist of one or more clients. A client groups a set of related APIs, providing access to its functionality within the specified subscription. Create one or more clients to access the APIs you require using your credential.

```go
client := armaad.{{NewClientName}}(<subscription ID>, cred, nil)
client := armaad.NewDiagnosticSettingsClient(cred, nil)
```

You can use `ClientOptions` in package `github.com/Azure/azure-sdk-for-go/sdk/azcore/arm` to set endpoint to connect with public and sovereign clouds as well as Azure Stack. For more information, please see the documentation for `azcore` at [pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azcore](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azcore).
Expand All @@ -47,7 +47,7 @@ You can use `ClientOptions` in package `github.com/Azure/azure-sdk-for-go/sdk/az
options = arm.ClientOptions{
Host: arm.AzureChina,
}
client := armaad.{{NewClientName}}(<subscription ID>, cred, &options)
client := armaad.NewDiagnosticSettingsClient(cred, &options)
```

## Provide Feedback
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ For more information on authentication, please see the documentation for `aziden
Azure Security Insight modules consist of one or more clients. A client groups a set of related APIs, providing access to its functionality within the specified subscription. Create one or more clients to access the APIs you require using your credential.

```go
client := armsecurityinsight.{{NewClientName}}(<subscription ID>, cred, nil)
client := armsecurityinsight.NewActionsClient(<subscription ID>, cred, nil)
```

You can use `ClientOptions` in package `github.com/Azure/azure-sdk-for-go/sdk/azcore/arm` to set endpoint to connect with public and sovereign clouds as well as Azure Stack. For more information, please see the documentation for `azcore` at [pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azcore](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azcore).
Expand All @@ -47,7 +47,7 @@ You can use `ClientOptions` in package `github.com/Azure/azure-sdk-for-go/sdk/az
options = arm.ClientOptions{
Host: arm.AzureChina,
}
client := armsecurityinsight.{{NewClientName}}(<subscription ID>, cred, &options)
client := armsecurityinsight.NewActionsClient(<subscription ID>, cred, &options)
```

## Provide Feedback
Expand Down