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

Add Documentation for Track 2 Management SDK #15096

Merged
merged 54 commits into from
Jul 28, 2021
Merged
Changes from 1 commit
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
046cf04
Update docs to reflect Track 2 status
nickzhums Jun 8, 2021
4fc2b03
Update README.md
nickzhums Jun 8, 2021
3a6e586
Update README.md
nickzhums Jun 8, 2021
f465116
Create previous-versions-quickstart.md
nickzhums Jun 8, 2021
ddf06bc
Update README.md
nickzhums Jun 8, 2021
fce27a7
Update README.md
nickzhums Jun 8, 2021
bab556c
Update README.md
nickzhums Jun 8, 2021
315b9ff
Update README.md
nickzhums Jun 8, 2021
247ab28
Create new-version-quickstart.md
nickzhums Jun 8, 2021
55ba755
Update new-version-quickstart.md
nickzhums Jun 8, 2021
159cf0e
Update README.md
nickzhums Jun 8, 2021
b5294eb
Update new-version-quickstart.md
nickzhums Jun 8, 2021
a3e5a25
Update new-version-quickstart.md
nickzhums Jun 8, 2021
3843e97
Update new-version-quickstart.md
nickzhums Jun 8, 2021
79449cf
Update new-version-quickstart.md
nickzhums Jun 8, 2021
13c31b4
Update new-version-quickstart.md
nickzhums Jun 8, 2021
ad5f3b8
add code snipet for resource groups
ArcturusZhang Jun 11, 2021
f755cc6
update code for vnet
ArcturusZhang Jun 16, 2021
36c9c90
update
ArcturusZhang Jun 18, 2021
cb8d9b0
Update new-version-quickstart.md
nickzhums Jul 20, 2021
b64a13a
Update new-version-quickstart.md
nickzhums Jul 20, 2021
bc0a1fe
Update new-version-quickstart.md
nickzhums Jul 20, 2021
8f1ba1d
Update new-version-quickstart.md
nickzhums Jul 20, 2021
99ff25c
Update new-version-quickstart.md
nickzhums Jul 20, 2021
5dac825
Update new-version-quickstart.md
nickzhums Jul 20, 2021
a99c815
Update new-version-quickstart.md
nickzhums Jul 20, 2021
686d229
Update new-version-quickstart.md
nickzhums Jul 20, 2021
a4a7d4c
Update new-version-quickstart.md
nickzhums Jul 20, 2021
c9b5d08
Merge branch 'main' into nickzhums-track2-1
nickzhums Jul 20, 2021
c45afb6
Update README.md
nickzhums Jul 20, 2021
7657d17
Update documentation/new-version-quickstart.md
nickzhums Jul 20, 2021
166ac7e
Update documentation/new-version-quickstart.md
nickzhums Jul 20, 2021
74ddb52
Update documentation/new-version-quickstart.md
nickzhums Jul 20, 2021
e55c678
Update README.md
nickzhums Jul 20, 2021
46c83c8
Update README.md
nickzhums Jul 20, 2021
635356b
Update README.md
nickzhums Jul 20, 2021
2b5e1b9
Update documentation/new-version-quickstart.md
nickzhums Jul 20, 2021
dd2d4aa
Update documentation/new-version-quickstart.md
nickzhums Jul 20, 2021
538ab2f
Update documentation/new-version-quickstart.md
nickzhums Jul 20, 2021
199bc32
Update documentation/new-version-quickstart.md
nickzhums Jul 20, 2021
15c89d0
Update documentation/new-version-quickstart.md
nickzhums Jul 20, 2021
8460221
Update documentation/new-version-quickstart.md
nickzhums Jul 20, 2021
e291e9b
Update documentation/new-version-quickstart.md
nickzhums Jul 20, 2021
8d15f1e
Update documentation/new-version-quickstart.md
nickzhums Jul 20, 2021
8997e66
Update documentation/new-version-quickstart.md
nickzhums Jul 20, 2021
50136e7
Update new-version-quickstart.md
nickzhums Jul 26, 2021
68e0fb9
Update new-version-quickstart.md
nickzhums Jul 28, 2021
0e54eeb
Update README.md
nickzhums Jul 28, 2021
d1ffeac
Update README.md
nickzhums Jul 28, 2021
c624cc4
Update new-version-quickstart.md
nickzhums Jul 28, 2021
ae41744
Update new-version-quickstart.md
nickzhums Jul 28, 2021
d98c088
Update README.md
nickzhums Jul 28, 2021
548c7a1
Update previous-versions-quickstart.md
nickzhums Jul 28, 2021
c3bfc20
update code snippet
ArcturusZhang Jul 28, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update new-version-quickstart.md
  • Loading branch information
nickzhums authored Jul 20, 2021
commit 99ff25c9d18e85d2b0fed2ac6617083f78aee401
2 changes: 1 addition & 1 deletion documentation/new-version-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ To write the concrete code for the API call, you might need to look up the infor

To see the reference for a certain package, you can either click into each package on the web-site, or directly add the SDK path to the end of URL. For example, to see the reference for Azure Compute package, you can use [https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/compute/armcompute](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/compute/armcompute). Certain development tool or IDE has features that allow you to directly look up API definitions as well.

Let's illustrate the SDK usage by a few quick examples. In the following sample. we are going to create a resource group using the SDK. To acheive this scenario, we can take the follow steps
Let's illustrate the SDK usage by a few quick examples. In the following sample. we are going to create a resource group using the SDK. To achieve this scenario, we can take the follow steps

- **Step 1** : Decide which client we want to use, in our case, we know that it's related to Resource Group so our choice is the [ResourceGroupsClient](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resources/armresources#ResourceGroupsClient)
- **Step 2** : Find out which operation is responsible for creating a resource group. By locating the client in previous step, we are able to see all the functions under `ResourceGroupsClient`, and we can see [the `CreateOrUpdate` function](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resources/armresources#ResourceGroupsClient.CreateOrUpdate) is what need.
Expand Down