• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/H02-Sep-2021-

documentation/H02-Sep-2021-

eng/H02-Sep-2021-

profiles/H02-Sep-2021-

sdk/H02-Sep-2021-

services/H02-Sep-2021-

storage/H02-Sep-2021-

tools/H02-Sep-2021-

version/H02-Sep-2021-

.gitattributesH A D02-Sep-202185

.gitignoreH A D02-Sep-2021441

CHANGELOG.mdH A D02-Sep-2021569.2 KiB

CODE_OF_CONDUCT.mdH A D02-Sep-2021444

CONTRIBUTING.mdH A D02-Sep-20216.5 KiB

Gopkg.lockH A D02-Sep-202110.6 KiB

Gopkg.tomlH A D02-Sep-20211.2 KiB

README.mdH A D02-Sep-20215.7 KiB

SECURITY.mdH A D02-Sep-20212.7 KiB

SUPPORT.mdH A D02-Sep-20211.9 KiB

azure-pipelines.ymlH A D02-Sep-20213.4 KiB

doc.goH A D02-Sep-2021501

findTestedPackages.shH A D02-Sep-202158

generate_options.jsonH A D02-Sep-2021295

initScript.shH A D02-Sep-2021398

rungas.shH A D02-Sep-2021588

swagger_to_sdk_config.jsonH A D02-Sep-2021732

README.md

1# Azure SDK for Go
2
3[![godoc](https://godoc.org/github.com/Azure/azure-sdk-for-go?status.svg)](https://godoc.org/github.com/Azure/azure-sdk-for-go)
4[![Build Status](https://dev.azure.com/azure-sdk/public/_apis/build/status/go/Azure.azure-sdk-for-go?branchName=main)](https://dev.azure.com/azure-sdk/public/_build/latest?definitionId=640&branchName=main)
5
6This repository is for active development of the Azure SDK for Go. For consumers of the SDK you can follow the links below to visit the documentation you are interested in
7* [Overview of Azure SDK for Go](https://docs.microsoft.com/azure/developer/go/)
8* [SDK Reference](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go)
9* [Code Samples for Azure Go SDK](https://github.com/azure-samples/azure-sdk-for-go-samples)
10* [Azure REST API Docs](https://docs.microsoft.com/rest/api/)
11* [General Azure Docs](https://docs.microsoft.com/azure)
12
13
14## New Releases
15
16A new set of management libraries for Go that follow the [Azure SDK Design Guidelines for Go](https://azure.github.io/azure-sdk/golang_introduction.html) are now available. These new libraries provide a number of core capabilities that are shared amongst all Azure SDKs, including the intuitive Azure Identity library, an HTTP Pipeline with custom policies, error-handling, distributed tracing, and much more. Those new libraries can be identified by locating them under the `/sdk` directory in the repo, and you can find the corresponding references [here](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk).
17
18To get started, please follow the [quickstart guide here](https://aka.ms/azsdk/go/mgmt). To see the benefits of migrating to the new libraries, please visit this [migration guide](https://aka.ms/azsdk/go/mgmt/migration) that shows how to transition from older versions of libraries.
19
20You can find the most up to date list of all of the new packages [on this page](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk) as well as our [official releases page](https://azure.github.io/azure-sdk/releases/latest/go.html)
21
22## Previous Versions
23
24Previous Go SDK packages are located under [/services folder](https://github.com/Azure/azure-sdk-for-go/tree/master/services), and you can see the full list [on this page](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/services). They might not have the same feature set as the new releases but they do offer wider coverage of services.
25
26
27## Getting Started
28
29For instructions and documentation on how to use our Azure SDK for Go, we have provided quick-start tutorials for both new and previous releases.
30
31* [Quickstart tutorial for new releases](https://aka.ms/azsdk/go/mgmt). Documentation is also available at each readme file of the individual module (Example: [Readme for Compute Module](https://github.com/Azure/azure-sdk-for-go/tree/master/sdk/compute/armcompute))
32* [Quickstart tutorial for previous versions](https://aka.ms/azsdk/go/mgmt/previous)
33
34## Other Azure Go Packages
35
36Azure provides several other packages for using services from Go, listed below.
37If a package you need isn't available please open an issue and let us know.
38
39| Service              | Import Path/Repo                                                                                   |
40| -------------------- | -------------------------------------------------------------------------------------------------- |
41| Storage - Blobs      | [github.com/Azure/azure-storage-blob-go](https://github.com/Azure/azure-storage-blob-go)           |
42| Storage - Files      | [github.com/Azure/azure-storage-file-go](https://github.com/Azure/azure-storage-file-go)           |
43| Storage - Queues     | [github.com/Azure/azure-storage-queue-go](https://github.com/Azure/azure-storage-queue-go)         |
44| Service Bus          | [github.com/Azure/azure-service-bus-go](https://github.com/Azure/azure-service-bus-go)             |
45| Event Hubs           | [github.com/Azure/azure-event-hubs-go](https://github.com/Azure/azure-event-hubs-go)               |
46| Application Insights | [github.com/Microsoft/ApplicationInsights-go](https://github.com/Microsoft/ApplicationInsights-go) |
47
48Packages that are still in public preview can be found under the `services/preview` directory. Please be aware that since these packages are in preview they are subject to change, including breaking changes, outside of a major semver bump.
49
50## Samples
51
52More code samples for using the management library for Go SDK can be found in the following locations
53- [Go SDK Code Samples Repo](https://github.com/azure-samples/azure-sdk-for-go-samples)
54- 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/network/armnetwork/example_networkinterfaces_test.go)
55
56## Reporting security issues and security bugs
57
58Security issues and bugs should be reported privately, via email, to the Microsoft Security Response Center (MSRC) <secure@microsoft.com>. You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Further information, including the MSRC PGP key, can be found in the [Security TechCenter](https://www.microsoft.com/msrc/faqs-report-an-issue).
59
60## Need help?
61
62* File an issue via [Github Issues](https://github.com/Azure/azure-sdk-for-go/issues)
63* Check [previous questions](https://stackoverflow.com/questions/tagged/azure+go) or ask new ones on StackOverflow using `azure` and `go` tags.
64
65## Community
66
67* Chat with us in the **[#Azure SDK
68channel](https://gophers.slack.com/messages/CA7HK8EEP)** on the [Gophers
69Slack](https://gophers.slack.com/). Sign up
70[here](https://invite.slack.golangbridge.org) first if necessary.
71
72## Contribute
73
74See [CONTRIBUTING.md](https://github.com/Azure/azure-sdk-for-go/blob/main/CONTRIBUTING.md).
75
76