https://github.com/Azure/azure-sdk-for-go
azure azure-sdk go golang hacktoberfest microsoft rest sdk
Last synced: about 1 month ago
Repository metadata:
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we recommend visiting our public developer docs at:
- Host: GitHub
- URL: https://github.com/Azure/azure-sdk-for-go
- Owner: Azure
- License: mit
- Created: 2014-08-11T21:18:43.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2024-10-29T05:52:42.000Z (about 2 months ago)
- Last Synced: 2024-10-29T11:28:02.344Z (about 2 months ago)
- Topics: azure, azure-sdk, go, golang, hacktoberfest, microsoft, rest, sdk
- Language: Go
- Homepage: https://docs.microsoft.com/azure/developer/go/
- Size: 307 MB
- Stars: 1,634
- Watchers: 345
- Forks: 838
- Open Issues: 235
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
- Support: SUPPORT.md
Owner metadata:
- Name: Microsoft Azure
- Login: Azure
- Email: [email protected]
- Kind: organization
- Description: APIs, SDKs and open source projects from Microsoft Azure
- Website: https://docs.microsoft.com/en-us/azure/
- Location: Redmond, WA & the cloud ☁️
- Twitter: Azure
- Company:
- Icon url: https://avatars.githubusercontent.com/u/6844498?v=4
- Repositories: 2270
- Last Synced at: 2024-04-02T11:09:22.888Z
- Profile URL: https://github.com/Azure
- Sponsor URL:
Committers metadata
Last synced: about 1 month ago
Total Commits: 7,575
Total Committers: 246
Avg Commits per committer: 30.793
Development Distribution Score (DDS): 0.792
Commits in past year: 1,195
Committers in past year: 54
Avg Commits per committer in past year: 22.13
Development Distribution Score (DDS) in past year: 0.618
Name | Commits | |
---|---|---|
Azure SDK Bot | 5****k | 1572 |
Azure SDK for Python bot | a****2@m****m | 1054 |
Jiahui Peng | 4****e | 948 |
Joel Hendrix | j****x@m****m | 918 |
Richard Park | 5****t | 346 |
Charles Lowell | 1****l | 301 |
Sean Kane | 6****t | 173 |
Arcturus | d****g@m****m | 172 |
Chenjie Shi | t****i@l****n | 164 |
Azure SDK for Python bot | a****k@m****m | 163 |
gracewilcox | 4****x | 118 |
Mariana Cardoso | m****o@m****m | 113 |
Ahmet Alp Balkan | a****n@g****m | 103 |
JiahuiPeng | 4****2 | 97 |
Martin Strobel | m****r@m****m | 91 |
Ben Broderick Phillips | b****r@m****m | 74 |
Rick Winter | r****r@m****m | 69 |
catalinaperalta | c****h@h****m | 64 |
tanyasethi-msft | 1****t | 52 |
Paul Meyer | p****r@m****m | 51 |
Sourav Gupta | 9****t | 48 |
arcturusZhang | u****3@g****m | 47 |
Matias Quaranta | e****r | 45 |
Charles Lowell | c****e@m****m | 40 |
Ruslan Gabitov | h****n@g****m | 39 |
Vlad Barosan | v****b@m****m | 32 |
siminsavani-msft | 7****t | 28 |
Martin Strobel | m****r | 28 |
Garima A | g****9@g****m | 27 |
Tamer Sherif | 6****t | 19 |
and 216 more... |
Issue and Pull Request metadata
Last synced: about 1 month ago
Package metadata
- Total packages: 100
- Total downloads: unknown
- Total docker downloads: 65,520,311,681
- Total dependent packages: 19,294 (may contain duplicates)
- Total dependent repositories: 43,419 (may contain duplicates)
- Total versions: 1,925
- Total advisories: 1
go: github.com/Azure/azure-sdk-for-go
Package sdk provides Go packages for managing and using Azure services. GitHub repo: https://github.com/Azure/azure-sdk-for-go Official documentation: https://docs.microsoft.com/azure/go API reference: https://godoc.org/github.com/Azure/azure-sdk-for-go Samples: https://github.com/Azure-Samples/azure-sdk-for-go-samples
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go#section-documentation
- Licenses: MIT
- Latest release: v68.0.0+incompatible (published almost 2 years ago)
- Last Synced: 2024-11-11T23:32:09.695Z (about 1 month ago)
- Versions: 275
- Dependent Packages: 10,104
- Dependent Repositories: 30,537
- Docker Downloads: 23,048,601,375
-
Rankings:
- Docker downloads count: 0.014%
- Dependent packages count: 0.021%
- Dependent repos count: 0.033%
- Average: 0.606%
- Forks count: 1.035%
- Stargazers count: 1.928%
go: github.com/Azure/azure-sdk-for-go/sdk/azcore
Package azcore implements an HTTP request/response middleware pipeline used by Azure SDK clients. The middleware consists of three components. A Policy can be implemented in two ways; as a first-class function for a stateless Policy, or as a method on a type for a stateful Policy. Note that HTTP requests made via the same pipeline share the same Policy instances, so if a Policy mutates its state it MUST be properly synchronized to avoid race conditions. A Policy's Do method is called when an HTTP request wants to be sent over the network. The Do method can perform any operation(s) it desires. For example, it can log the outgoing request, mutate the URL, headers, and/or query parameters, inject a failure, etc. Once the Policy has successfully completed its request work, it must call the Next() method on the *policy.Request instance in order to pass the request to the next Policy in the chain. When an HTTP response comes back, the Policy then gets a chance to process the response/error. The Policy instance can log the response, retry the operation if it failed due to a transient error or timeout, unmarshal the response body, etc. Once the Policy has successfully completed its response work, it must return the *http.Response and error instances to its caller. Template for implementing a stateless Policy: Template for implementing a stateful Policy: The Transporter interface is responsible for sending the HTTP request and returning the corresponding HTTP response or error. The Transporter is invoked by the last Policy in the chain. The default Transporter implementation uses a shared http.Client from the standard library. The same stateful/stateless rules for Policy implementations apply to Transporter implementations. To use the Policy and Transporter instances, an application passes them to the runtime.NewPipeline function. The specified Policy instances form a chain and are invoked in the order provided to NewPipeline followed by the Transporter. Once the Pipeline has been created, create a runtime.Request instance and pass it to Pipeline's Do method. The Pipeline.Do method sends the specified Request through the chain of Policy and Transporter instances. The response/error is then sent through the same chain of Policy instances in reverse order. For example, assuming there are Policy types PolicyA, PolicyB, and PolicyC along with TransportA. The flow of Request and Response looks like the following: The Request instance passed to Pipeline's Do method is a wrapper around an *http.Request. It also contains some internal state and provides various convenience methods. You create a Request instance by calling the runtime.NewRequest function: If the Request should contain a body, call the SetBody method. A seekable stream is required so that upon retry, the retry Policy instance can seek the stream back to the beginning before retrying the network request and re-uploading the body. Operations like JSON-MERGE-PATCH send a JSON null to indicate a value should be deleted. This requirement conflicts with the SDK's default marshalling that specifies "omitempty" as a means to resolve the ambiguity between a field to be excluded and its zero-value. In the above example, Name and Count are defined as pointer-to-type to disambiguate between a missing value (nil) and a zero-value (0) which might have semantic differences. In a PATCH operation, any fields left as nil are to have their values preserved. When updating a Widget's count, one simply specifies the new value for Count, leaving Name nil. To fulfill the requirement for sending a JSON null, the NullValue() function can be used. This sends an explict "null" for Count, indicating that any current value for Count should be deleted. When the HTTP response is received, the *http.Response is returned directly. Each Policy instance can inspect/mutate the *http.Response. To enable logging, set environment variable AZURE_SDK_GO_LOGGING to "all" before executing your program. By default the logger writes to stderr. This can be customized by calling log.SetListener, providing a callback that writes to the desired location. Any custom logging implementation MUST provide its own synchronization to handle concurrent invocations. See the docs for the log package for further details. Pageable operations return potentially large data sets spread over multiple GET requests. The result of each GET is a "page" of data consisting of a slice of items. Pageable operations can be identified by their New*Pager naming convention and return type of *runtime.Pager[T]. The call to WidgetClient.NewListWidgetsPager() returns an instance of *runtime.Pager[T] for fetching pages and determining if there are more pages to fetch. No IO calls are made until the NextPage() method is invoked. Long-running operations (LROs) are operations consisting of an initial request to start the operation followed by polling to determine when the operation has reached a terminal state. An LRO's terminal state is one of the following values. LROs can be identified by their Begin* prefix and their return type of *runtime.Poller[T]. When a call to WidgetClient.BeginCreateOrUpdate() returns a nil error, it means that the LRO has started. It does _not_ mean that the widget has been created or updated (or failed to be created/updated). The *runtime.Poller[T] provides APIs for determining the state of the LRO. To wait for the LRO to complete, call the PollUntilDone() method. The call to PollUntilDone() will block the current goroutine until the LRO has reached a terminal state or the context is canceled/timed out. Note that LROs can take anywhere from several seconds to several minutes. The duration is operation-dependent. Due to this variant behavior, pollers do _not_ have a preconfigured time-out. Use a context with the appropriate cancellation mechanism as required. Pollers provide the ability to serialize their state into a "resume token" which can be used by another process to recreate the poller. This is achieved via the runtime.Poller[T].ResumeToken() method. Note that a token can only be obtained for a poller that's in a non-terminal state. Also note that any subsequent calls to poller.Poll() might change the poller's state. In this case, a new token should be created. After the token has been obtained, it can be used to recreate an instance of the originating poller. When resuming a poller, no IO is performed, and zero-value arguments can be used for everything but the Options.ResumeToken. Resume tokens are unique per service client and operation. Attempting to resume a poller for LRO BeginB() with a token from LRO BeginA() will result in an error. The fake package contains types used for constructing in-memory fake servers used in unit tests. This allows writing tests to cover various success/error conditions without the need for connecting to a live service. Please see https://github.com/Azure/azure-sdk-for-go/tree/main/sdk/samples/fakes for details and examples on how to use fakes.
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azcore#section-documentation
- Licenses: MIT
- Latest release: v1.16.0 (published 2 months ago)
- Last Synced: 2024-11-12T02:12:43.202Z (about 1 month ago)
- Versions: 86
- Dependent Packages: 4,200
- Dependent Repositories: 5,959
- Docker Downloads: 18,804,076,023
-
Rankings:
- Docker downloads count: 0.027%
- Dependent packages count: 0.078%
- Dependent repos count: 0.106%
- Average: 0.624%
- Forks count: 1.02%
- Stargazers count: 1.888%
go: github.com/Azure/azure-sdk-for-go/sdk/azidentity
This example shows how to cache service principal authentication data persistently to make it accessible to multiple processes. The example uses ClientCertificateCredential, however the pattern is the same for all service principal credential types having a Cache field in their options. The key steps are: Credentials that authenticate users such as InteractiveBrowserCredential have a different pattern; see the persistent user authentication example. This example shows how to cache authentication data persistently so a user doesn't need to authenticate interactively every time the application runs. The example uses InteractiveBrowserCredential, however DeviceCodeCredential has the same API. The key steps are: This examples applies to credentials that authenticate users. For credentials authenticating service principal, see the persistent service principal authentication example. This example demonstrates how to use azidentity to authenticate a go-redis client connecting to Azure Cache for Redis. See the Azure Cache for Redis documentation for information on configuring a cache to use Entra ID authentication.
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azidentity#section-documentation
- Licenses: MIT
- Latest release: v1.8.0 (published 2 months ago)
- Last Synced: 2024-11-12T00:01:14.181Z (about 1 month ago)
- Versions: 65
- Dependent Packages: 2,996
- Dependent Repositories: 4,673
- Docker Downloads: 16,312,833,673
-
Rankings:
- Docker downloads count: 0.034%
- Dependent packages count: 0.094%
- Dependent repos count: 0.12%
- Average: 0.631%
- Forks count: 1.02%
- Stargazers count: 1.888%
- Advisories:
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources#section-documentation
- Licenses: MIT
- Latest release: v1.2.0 (published about 1 year ago)
- Last Synced: 2024-11-11T17:01:51.770Z (about 1 month ago)
- Versions: 13
- Dependent Packages: 517
- Dependent Repositories: 398
- Docker Downloads: 1,479,902,303
-
Rankings:
- Docker downloads count: 0.112%
- Dependent repos count: 0.345%
- Dependent packages count: 0.347%
- Average: 0.721%
- Forks count: 0.991%
- Stargazers count: 1.81%
go: github.com/Azure/azure-sdk-for-go/sdk/keyvault/azkeys
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/keyvault/azkeys#section-documentation
- Licenses: MIT
- Latest release: v0.10.0 (published over 1 year ago)
- Last Synced: 2024-11-11T02:31:57.217Z (about 1 month ago)
- Versions: 12
- Dependent Packages: 253
- Dependent Repositories: 374
- Docker Downloads: 4,654,756,035
-
Rankings:
- Docker downloads count: 0.058%
- Dependent repos count: 0.353%
- Dependent packages count: 0.508%
- Average: 0.756%
- Forks count: 1.02%
- Stargazers count: 1.841%
go: github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus
Package azservicebus provides clients for sending and receiving messages with Azure Service Bus. NOTE: for creating and managing entities, use the `Client` in the `github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus/admin` package.
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus#section-documentation
- Licenses: MIT
- Latest release: v1.6.1 (published 10 months ago)
- Last Synced: 2024-11-11T02:37:12.004Z (about 1 month ago)
- Versions: 33
- Dependent Packages: 113
- Dependent Repositories: 442
- Docker Downloads: 78,520,284
-
Rankings:
- Docker downloads count: 0.294%
- Dependent repos count: 0.335%
- Dependent packages count: 0.581%
- Average: 0.802%
- Forks count: 0.991%
- Stargazers count: 1.811%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/monitor/armmonitor
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/monitor/armmonitor#section-documentation
- Licenses: MIT
- Latest release: v0.11.0 (published about 1 year ago)
- Last Synced: 2024-11-11T02:08:15.251Z (about 1 month ago)
- Versions: 15
- Dependent Packages: 152
- Dependent Repositories: 88
- Docker Downloads: 932,668,649
-
Rankings:
- Docker downloads count: 0.137%
- Dependent repos count: 0.631%
- Dependent packages count: 0.737%
- Average: 0.873%
- Forks count: 1.02%
- Stargazers count: 1.841%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork#section-documentation
- Licenses: MIT
- Latest release: v1.1.0 (published over 2 years ago)
- Last Synced: 2024-10-29T13:03:38.524Z (about 2 months ago)
- Versions: 8
- Dependent Packages: 144
- Dependent Repositories: 292
- Docker Downloads: 175,752
-
Rankings:
- Dependent repos count: 0.387%
- Dependent packages count: 0.438%
- Docker downloads count: 0.73%
- Average: 0.883%
- Forks count: 1.007%
- Stargazers count: 1.852%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute#section-documentation
- Licenses: MIT
- Latest release: v1.0.0 (published over 2 years ago)
- Last Synced: 2024-10-29T13:03:32.671Z (about 2 months ago)
- Versions: 9
- Dependent Packages: 110
- Dependent Repositories: 126
- Docker Downloads: 7,410,633
-
Rankings:
- Dependent packages count: 0.499%
- Dependent repos count: 0.544%
- Docker downloads count: 0.717%
- Average: 0.924%
- Forks count: 1.007%
- Stargazers count: 1.852%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage#section-documentation
- Licenses: MIT
- Latest release: v1.5.0 (published about 1 year ago)
- Last Synced: 2024-11-11T02:08:08.505Z (about 1 month ago)
- Versions: 17
- Dependent Packages: 147
- Dependent Repositories: 36
- Docker Downloads: 25,084,894
-
Rankings:
- Dependent packages count: 0.678%
- Docker downloads count: 0.777%
- Dependent repos count: 0.935%
- Forks count: 1.02%
- Average: 1.05%
- Stargazers count: 1.841%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/keyvault/armkeyvault
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/keyvault/armkeyvault#section-documentation
- Licenses: MIT
- Latest release: v1.4.0 (published about 1 year ago)
- Last Synced: 2024-11-11T18:30:51.364Z (about 1 month ago)
- Versions: 13
- Dependent Packages: 65
- Dependent Repositories: 70
- Docker Downloads: 29,074
-
Rankings:
- Dependent repos count: 0.703%
- Dependent packages count: 0.852%
- Docker downloads count: 0.906%
- Forks count: 0.991%
- Average: 1.053%
- Stargazers count: 1.811%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/operationalinsights/armoperationalinsights
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/operationalinsights/armoperationalinsights#section-documentation
- Licenses: MIT
- Latest release: v1.2.0 (published about 1 year ago)
- Last Synced: 2024-11-11T09:01:31.966Z (about 1 month ago)
- Versions: 10
- Dependent Packages: 18
- Dependent Repositories: 28
- Docker Downloads: 24,453
-
Rankings:
- Docker downloads count: 0.975%
- Forks count: 0.991%
- Dependent repos count: 1.053%
- Average: 1.261%
- Dependent packages count: 1.474%
- Stargazers count: 1.811%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/sql/armsql
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/sql/armsql#section-documentation
- Licenses: MIT
- Latest release: v1.2.0 (published about 1 year ago)
- Last Synced: 2024-11-11T07:33:03.391Z (about 1 month ago)
- Versions: 11
- Dependent Packages: 22
- Dependent Repositories: 63
- Docker Downloads: 199,058
-
Rankings:
- Dependent repos count: 0.736%
- Forks count: 0.991%
- Average: 1.299%
- Dependent packages count: 1.321%
- Docker downloads count: 1.635%
- Stargazers count: 1.811%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/automation/armautomation
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/automation/armautomation#section-documentation
- Licenses: MIT
- Latest release: v0.9.0 (published about 1 year ago)
- Last Synced: 2024-11-10T10:31:34.467Z (about 1 month ago)
- Versions: 11
- Dependent Packages: 13
- Dependent Repositories: 25
- Docker Downloads: 339
-
Rankings:
- Forks count: 1.02%
- Dependent repos count: 1.108%
- Docker downloads count: 1.259%
- Average: 1.36%
- Dependent packages count: 1.576%
- Stargazers count: 1.84%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/eventgrid/armeventgrid/v2
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/eventgrid/armeventgrid/v2#section-documentation
- Licenses: MIT
- Latest release: v2.2.0 (published about 1 year ago)
- Last Synced: 2024-10-29T13:03:35.385Z (about 2 months ago)
- Versions: 6
- Dependent Packages: 29
- Dependent Repositories: 10
- Docker Downloads: 78,493,930
-
Rankings:
- Docker downloads count: 0.297%
- Forks count: 0.991%
- Average: 1.401%
- Dependent repos count: 1.689%
- Stargazers count: 1.811%
- Dependent packages count: 2.217%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/synapse/armsynapse
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/synapse/armsynapse#section-documentation
- Licenses: MIT
- Latest release: v0.8.0 (published about 1 year ago)
- Last Synced: 2024-11-10T19:30:56.970Z (about 1 month ago)
- Versions: 10
- Dependent Packages: 13
- Dependent Repositories: 6
- Docker Downloads: 339
-
Rankings:
- Forks count: 0.991%
- Docker downloads count: 1.259%
- Average: 1.551%
- Dependent packages count: 1.576%
- Stargazers count: 1.811%
- Dependent repos count: 2.118%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/kusto/armkusto
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/kusto/armkusto#section-documentation
- Licenses: MIT
- Latest release: v1.3.1 (published over 1 year ago)
- Last Synced: 2024-11-10T10:02:01.603Z (about 1 month ago)
- Versions: 10
- Dependent Packages: 14
- Dependent Repositories: 6
- Docker Downloads: 339
-
Rankings:
- Forks count: 0.991%
- Docker downloads count: 1.259%
- Average: 1.551%
- Dependent packages count: 1.576%
- Stargazers count: 1.811%
- Dependent repos count: 2.118%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/frontdoor/armfrontdoor
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/frontdoor/armfrontdoor#section-documentation
- Licenses: MIT
- Latest release: v1.3.0 (published about 1 year ago)
- Last Synced: 2024-11-11T02:08:11.537Z (about 1 month ago)
- Versions: 10
- Dependent Packages: 14
- Dependent Repositories: 6
- Docker Downloads: 339
-
Rankings:
- Forks count: 1.02%
- Docker downloads count: 1.259%
- Average: 1.562%
- Dependent packages count: 1.576%
- Stargazers count: 1.84%
- Dependent repos count: 2.118%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appplatform/armappplatform
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appplatform/armappplatform#section-documentation
- Licenses: MIT
- Latest release: v1.2.0 (published about 1 year ago)
- Last Synced: 2024-11-11T06:31:42.492Z (about 1 month ago)
- Versions: 12
- Dependent Packages: 12
- Dependent Repositories: 6
- Docker Downloads: 339
-
Rankings:
- Forks count: 0.991%
- Docker downloads count: 1.259%
- Average: 1.573%
- Dependent packages count: 1.687%
- Stargazers count: 1.811%
- Dependent repos count: 2.118%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/desktopvirtualization/armdesktopvirtualization
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/desktopvirtualization/armdesktopvirtualization#section-documentation
- Licenses: MIT
- Latest release: v1.0.0 (published over 2 years ago)
- Last Synced: 2024-11-11T02:08:10.330Z (about 1 month ago)
- Versions: 6
- Dependent Packages: 14
- Dependent Repositories: 5
- Docker Downloads: 339
-
Rankings:
- Forks count: 0.991%
- Docker downloads count: 1.259%
- Dependent packages count: 1.576%
- Average: 1.589%
- Stargazers count: 1.811%
- Dependent repos count: 2.308%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/cdn/armcdn
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/cdn/armcdn#section-documentation
- Licenses: MIT
- Latest release: v1.1.1 (published over 1 year ago)
- Last Synced: 2024-11-11T22:30:59.973Z (about 1 month ago)
- Versions: 9
- Dependent Packages: 15
- Dependent Repositories: 8
- Docker Downloads: 405
-
Rankings:
- Forks count: 0.991%
- Dependent packages count: 1.474%
- Average: 1.612%
- Stargazers count: 1.811%
- Dependent repos count: 1.871%
- Docker downloads count: 1.916%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/dataprotection/armdataprotection
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/dataprotection/armdataprotection#section-documentation
- Licenses: MIT
- Latest release: v1.0.0 (published over 2 years ago)
- Last Synced: 2024-11-11T20:01:19.810Z (about 1 month ago)
- Versions: 6
- Dependent Packages: 16
- Dependent Repositories: 3
- Docker Downloads: 339
-
Rankings:
- Forks count: 1.035%
- Docker downloads count: 1.285%
- Dependent packages count: 1.419%
- Average: 1.701%
- Stargazers count: 1.882%
- Dependent repos count: 2.885%
go: github.com/Azure/azure-sdk-for-go/eng/tools/internal
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/eng/tools/internal#section-documentation
- Licenses: mit
- Latest release: v0.0.0-20240126020845-47e5839b0aab (published 11 months ago)
- Last Synced: 2024-11-11T07:01:22.059Z (about 1 month ago)
- Versions: 504
- Dependent Packages: 4
- Dependent Repositories: 11
-
Rankings:
- Forks count: 0.991%
- Dependent repos count: 1.618%
- Average: 1.733%
- Stargazers count: 1.811%
- Dependent packages count: 2.513%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/timeseriesinsights/armtimeseriesinsights
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/timeseriesinsights/armtimeseriesinsights#section-documentation
- Licenses: MIT
- Latest release: v1.2.0 (published about 1 year ago)
- Last Synced: 2024-11-12T01:00:06.072Z (about 1 month ago)
- Versions: 3
- Dependent Packages: 12
- Dependent Repositories: 3
- Docker Downloads: 339
-
Rankings:
- Forks count: 0.991%
- Docker downloads count: 1.259%
- Dependent packages count: 1.687%
- Average: 1.741%
- Stargazers count: 1.811%
- Dependent repos count: 2.959%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/digitaltwins/armdigitaltwins
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/digitaltwins/armdigitaltwins#section-documentation
- Licenses: MIT
- Latest release: v1.2.0 (published about 1 year ago)
- Last Synced: 2024-11-11T02:08:00.394Z (about 1 month ago)
- Versions: 9
- Dependent Packages: 12
- Dependent Repositories: 3
- Docker Downloads: 339
-
Rankings:
- Forks count: 0.991%
- Docker downloads count: 1.259%
- Dependent packages count: 1.687%
- Average: 1.741%
- Stargazers count: 1.811%
- Dependent repos count: 2.959%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/recoveryservices/armrecoveryservicesbackup
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/recoveryservices/armrecoveryservicesbackup#section-documentation
- Licenses: MIT
- Latest release: v1.0.0 (published over 2 years ago)
- Last Synced: 2024-11-11T00:52:07.794Z (about 1 month ago)
- Versions: 7
- Dependent Packages: 14
- Dependent Repositories: 3
- Docker Downloads: 339
-
Rankings:
- Forks count: 0.991%
- Docker downloads count: 1.259%
- Dependent packages count: 1.687%
- Average: 1.741%
- Stargazers count: 1.811%
- Dependent repos count: 2.959%
go: github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal
Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information.
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal#section-documentation
- Licenses: MIT
- Latest release: v1.0.1 (published 9 months ago)
- Last Synced: 2024-11-11T02:07:52.138Z (about 1 month ago)
- Versions: 13
- Dependent Packages: 214
- Dependent Repositories: 171
- Docker Downloads: 97,444,415
-
Rankings:
- Dependent repos count: 0.481%
- Forks count: 0.991%
- Average: 1.743%
- Docker downloads count: 1.761%
- Stargazers count: 1.811%
- Dependent packages count: 3.672%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/securityinsights/armsecurityinsights/v2
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/securityinsights/armsecurityinsights/v2#section-documentation
- Licenses: MIT
- Latest release: v2.0.0-beta.3 (published over 1 year ago)
- Last Synced: 2024-11-11T02:08:15.456Z (about 1 month ago)
- Versions: 4
- Dependent Packages: 12
- Dependent Repositories: 3
- Docker Downloads: 339
-
Rankings:
- Forks count: 1.02%
- Docker downloads count: 1.259%
- Dependent packages count: 1.687%
- Average: 1.753%
- Stargazers count: 1.84%
- Dependent repos count: 2.959%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datalake-store/armdatalakestore
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datalake-store/armdatalakestore#section-documentation
- Licenses: MIT
- Latest release: v1.2.0 (published about 1 year ago)
- Last Synced: 2024-11-12T02:13:57.684Z (about 1 month ago)
- Versions: 9
- Dependent Packages: 4
- Dependent Repositories: 23
-
Rankings:
- Forks count: 1.034%
- Dependent repos count: 1.133%
- Average: 1.855%
- Stargazers count: 1.878%
- Dependent packages count: 3.374%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute/v2
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute/v2#section-documentation
- Licenses: MIT
- Latest release: v2.0.0 (published over 2 years ago)
- Last Synced: 2024-11-11T02:02:58.261Z (about 1 month ago)
- Versions: 1
- Dependent Packages: 3
- Dependent Repositories: 13
- Docker Downloads: 44
-
Rankings:
- Forks count: 1.007%
- Dependent repos count: 1.475%
- Docker downloads count: 1.827%
- Stargazers count: 1.852%
- Average: 1.908%
- Dependent packages count: 3.38%
go: github.com/Azure/azure-sdk-for-go/sdk/monitor/azquery
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/monitor/azquery#section-documentation
- Licenses: MIT
- Latest release: v1.1.0 (published over 1 year ago)
- Last Synced: 2024-11-11T02:07:49.504Z (about 1 month ago)
- Versions: 8
- Dependent Packages: 7
- Dependent Repositories: 2
- Docker Downloads: 27,116
-
Rankings:
- Docker downloads count: 0.938%
- Forks count: 1.034%
- Stargazers count: 1.878%
- Average: 1.916%
- Dependent packages count: 2.241%
- Dependent repos count: 3.49%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/advisor/armadvisor
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/advisor/armadvisor#section-documentation
- Licenses: MIT
- Latest release: v1.2.0 (published about 1 year ago)
- Last Synced: 2024-11-11T20:01:18.133Z (about 1 month ago)
- Versions: 8
- Dependent Packages: 5
- Dependent Repositories: 5
- Docker Downloads: 59,836
-
Rankings:
- Docker downloads count: 0.809%
- Forks count: 1.02%
- Stargazers count: 1.84%
- Average: 1.93%
- Dependent repos count: 2.308%
- Dependent packages count: 3.672%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/servicebus/armservicebus
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/servicebus/armservicebus#section-documentation
- Licenses: MIT
- Latest release: v1.2.0 (published about 1 year ago)
- Last Synced: 2024-10-29T13:03:27.093Z (about 2 months ago)
- Versions: 10
- Dependent Packages: 8
- Dependent Repositories: 5
-
Rankings:
- Forks count: 1.02%
- Stargazers count: 1.84%
- Average: 2.222%
- Dependent repos count: 2.32%
- Dependent packages count: 3.707%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appcomplianceautomation/armappcomplianceautomation
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appcomplianceautomation/armappcomplianceautomation#section-documentation
- Licenses: MIT
- Latest release: v0.3.0 (published about 1 year ago)
- Last Synced: 2024-10-29T13:03:38.704Z (about 2 months ago)
- Versions: 3
- Dependent Packages: 1
- Dependent Repositories: 3
-
Rankings:
- Forks count: 1.02%
- Stargazers count: 1.84%
- Average: 2.745%
- Dependent repos count: 2.971%
- Dependent packages count: 5.149%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/trafficmanager/armtrafficmanager
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/trafficmanager/armtrafficmanager#section-documentation
- Licenses: MIT
- Latest release: v1.3.0 (published about 1 year ago)
- Last Synced: 2024-10-29T13:03:39.731Z (about 2 months ago)
- Versions: 11
- Dependent Packages: 3
- Dependent Repositories: 4
-
Rankings:
- Forks count: 1.034%
- Stargazers count: 1.878%
- Dependent repos count: 2.514%
- Average: 2.809%
- Dependent packages count: 5.808%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/marketplace/armmarketplace
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/marketplace/armmarketplace#section-documentation
- Licenses: MIT
- Latest release: v1.2.0 (published about 1 year ago)
- Last Synced: 2024-10-28T23:34:35.330Z (about 2 months ago)
- Versions: 9
- Dependent Packages: 1
- Dependent Repositories: 3
-
Rankings:
- Forks count: 1.034%
- Stargazers count: 1.878%
- Dependent repos count: 2.894%
- Average: 2.903%
- Dependent packages count: 5.808%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appcontainers/armappcontainers/v2
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appcontainers/armappcontainers/v2#section-documentation
- Licenses: MIT
- Latest release: v2.1.0 (published about 1 year ago)
- Last Synced: 2024-11-04T23:05:30.979Z (about 2 months ago)
- Versions: 5
- Dependent Packages: 3
- Dependent Repositories: 3
-
Rankings:
- Forks count: 1.02%
- Stargazers count: 1.841%
- Dependent repos count: 2.971%
- Average: 3.571%
- Dependent packages count: 8.453%
go: github.com/Azure/azure-sdk-for-go/sdk/tables/aztable
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/tables/aztable#section-documentation
- Licenses: MIT
- Latest release: v0.0.0-20210714154028-658d8c542a56 (published over 3 years ago)
- Last Synced: 2024-11-09T01:06:46.803Z (about 1 month ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 1
-
Rankings:
- Forks count: 1.02%
- Stargazers count: 1.841%
- Average: 4.027%
- Dependent repos count: 4.794%
- Dependent packages count: 8.453%
go: github.com/azure/Azure-sdk-for-go/sdk/storage/azblob
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/Azure-sdk-for-go/sdk/storage/azblob#section-documentation
- Licenses: mit
- Latest release: v1.3.1 (published 10 months ago)
- Last Synced: 2024-10-29T13:04:09.735Z (about 2 months ago)
- Versions: 24
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent repos count: 1.622%
- Average: 4.057%
- Dependent packages count: 6.492%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/hybridnetwork/armhybridnetwork
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/hybridnetwork/armhybridnetwork#section-documentation
- Licenses: MIT
- Latest release: v1.1.1 (published over 1 year ago)
- Last Synced: 2024-11-04T23:05:36.592Z (about 2 months ago)
- Versions: 8
- Dependent Packages: 0
- Dependent Repositories: 1
-
Rankings:
- Forks count: 1.034%
- Stargazers count: 1.855%
- Average: 4.302%
- Dependent repos count: 4.746%
- Dependent packages count: 9.575%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/nginx/armnginx
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/nginx/armnginx#section-documentation
- Licenses: MIT
- Latest release: v1.0.1 (published about 2 years ago)
- Last Synced: 2024-11-11T02:08:14.028Z (about 1 month ago)
- Versions: 2
- Dependent Packages: 0
- Dependent Repositories: 1
-
Rankings:
- Forks count: 1.034%
- Stargazers count: 1.855%
- Average: 4.302%
- Dependent repos count: 4.746%
- Dependent packages count: 9.575%
go: github.com/azure/azure-sdk-for-go/sdk/security/keyvault/azadmin
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/security/keyvault/azadmin#section-documentation
- Licenses: mit
- Latest release: v1.1.0 (published 10 months ago)
- Last Synced: 2024-11-04T23:05:28.514Z (about 2 months ago)
- Versions: 8
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.651%
- Stargazers count: 1.121%
- Average: 4.529%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/liftrqumulo/armqumulo
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/liftrqumulo/armqumulo#section-documentation
- Licenses: mit
- Latest release: v1.1.0 (published about 1 year ago)
- Last Synced: 2024-10-29T13:03:33.495Z (about 2 months ago)
- Versions: 4
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.654%
- Stargazers count: 1.129%
- Average: 4.532%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%
go: github.com/Azure/azure-SDK-for-go
Package sdk provides Go packages for managing and using Azure services. GitHub repo: https://github.com/Azure/azure-sdk-for-go Official documentation: https://docs.microsoft.com/azure/go API reference: https://godoc.org/github.com/Azure/azure-sdk-for-go Samples: https://github.com/Azure-Samples/azure-sdk-for-go-samples
- Homepage: https://github.com/Azure/azure-SDK-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-SDK-for-go#section-documentation
- Licenses: MIT
- Latest release: v68.0.0+incompatible (published almost 2 years ago)
- Last Synced: 2024-11-04T23:05:40.540Z (about 2 months ago)
- Versions: 275
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.666%
- Stargazers count: 1.163%
- Average: 4.544%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/quantum/armquantum
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/quantum/armquantum#section-documentation
- Licenses: MIT
- Latest release: v0.7.0 (published about 1 year ago)
- Last Synced: 2024-10-29T13:03:32.248Z (about 2 months ago)
- Versions: 9
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.672%
- Stargazers count: 1.169%
- Average: 4.547%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%
go: github.com/Azure/azure-sdk-for-go/sdk/apimanagement/armapimanagement
- Homepage:
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/apimanagement/armapimanagement#section-documentation
- Licenses: mit
- Latest release: v0.2.1 (published about 3 years ago)
- Last Synced: 2024-11-11T02:07:51.934Z (about 1 month ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.672%
- Stargazers count: 1.169%
- Average: 4.547%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%
go: github.com/Azure/azure-sdk-for-go/sdk/arm/keyvault
- Homepage:
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/arm/keyvault#section-documentation
- Licenses: mit
- Latest release: v0.1.0 (published over 2 years ago)
- Last Synced: 2024-11-11T02:08:10.950Z (about 1 month ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.672%
- Stargazers count: 1.169%
- Average: 4.547%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%
go: gopkg.in/azure/azure-sdk-for-go.v30
Package sdk provides Go packages for managing and using Azure services. GitHub repo: https://github.com/Azure/azure-sdk-for-go Official documentation: https://docs.microsoft.com/go/azure API reference: https://godoc.org/github.com/Azure/azure-sdk-for-go Samples: https://github.com/Azure-Samples/azure-sdk-for-go-samples
- Homepage: https://github.com/azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/gopkg.in/azure/azure-sdk-for-go.v30#section-documentation
- Licenses: Apache-2.0
- Latest release: v30.1.0 (published over 5 years ago)
- Last Synced: 2024-11-11T23:49:21.078Z (about 1 month ago)
- Versions: 2
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.672%
- Stargazers count: 1.169%
- Average: 4.547%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/logz/armlogz
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/logz/armlogz#section-documentation
- Licenses: MIT
- Latest release: v1.2.0 (published about 1 year ago)
- Last Synced: 2024-10-29T13:03:32.020Z (about 2 months ago)
- Versions: 9
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.672%
- Stargazers count: 1.169%
- Average: 4.547%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/visualstudio/armvisualstudio
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/visualstudio/armvisualstudio#section-documentation
- Licenses: MIT
- Latest release: v0.6.0 (published about 1 year ago)
- Last Synced: 2024-10-29T13:03:36.346Z (about 2 months ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.672%
- Stargazers count: 1.169%
- Average: 4.547%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%
go: github.com/Azure/azure-sdk-for-go/sdk/profiles/aksprofile1
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/profiles/aksprofile1#section-documentation
- Licenses: MIT
- Latest release: v0.0.0-20220906082653-6b805d8278b6 (published over 2 years ago)
- Last Synced: 2024-10-29T13:03:34.333Z (about 2 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.672%
- Stargazers count: 1.169%
- Average: 4.547%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/policyinsights/armpolicyinsights
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/policyinsights/armpolicyinsights#section-documentation
- Licenses: MIT
- Latest release: v0.8.0 (published about 1 year ago)
- Last Synced: 2024-11-11T02:07:48.540Z (about 1 month ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.672%
- Stargazers count: 1.169%
- Average: 4.547%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/mediaservices/armmediaservices/v2
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/mediaservices/armmediaservices/v2#section-documentation
- Licenses: MIT
- Latest release: v2.0.0 (published over 2 years ago)
- Last Synced: 2024-10-29T13:03:35.401Z (about 2 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.651%
- Stargazers count: 1.613%
- Average: 4.652%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/desktopvirtualization/armdesktopvirtualization/v2
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/desktopvirtualization/armdesktopvirtualization/v2#section-documentation
- Licenses: mit
- Latest release: v2.2.0 (published about 1 year ago)
- Last Synced: 2024-10-29T13:03:46.108Z (about 2 months ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.651%
- Stargazers count: 1.613%
- Average: 4.652%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/communication/armcommunication/v2
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/communication/armcommunication/v2#section-documentation
- Licenses: MIT
- Latest release: v2.2.0 (published 9 months ago)
- Last Synced: 2024-11-11T02:08:13.326Z (about 1 month ago)
- Versions: 9
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.651%
- Stargazers count: 1.613%
- Average: 4.652%
- Dependent packages count: 6.999%
- Dependent repos count: 9.346%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/billingbenefits/armbillingbenefits/v2
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/billingbenefits/armbillingbenefits/v2#section-documentation
- Licenses: mit
- Latest release: v2.1.0 (published about 1 year ago)
- Last Synced: 2024-11-11T02:08:12.060Z (about 1 month ago)
- Versions: 2
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.898%
- Stargazers count: 1.673%
- Average: 4.923%
- Dependent packages count: 7.77%
- Dependent repos count: 9.351%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/recoveryservices/armrecoveryservicessiterecovery/v2
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/recoveryservices/armrecoveryservicessiterecovery/v2#section-documentation
- Licenses: mit
- Latest release: v2.2.0 (published about 1 year ago)
- Last Synced: 2024-10-29T13:03:36.213Z (about 2 months ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.898%
- Stargazers count: 1.673%
- Average: 4.923%
- Dependent packages count: 7.77%
- Dependent repos count: 9.351%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/recoveryservices/armrecoveryservicessiterecovery/v2
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/recoveryservices/armrecoveryservicessiterecovery/v2#section-documentation
- Licenses: MIT
- Latest release: v2.3.0 (published 10 months ago)
- Last Synced: 2024-10-30T13:07:01.261Z (about 2 months ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.898%
- Stargazers count: 1.673%
- Average: 4.923%
- Dependent packages count: 7.77%
- Dependent repos count: 9.351%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/solutions/armmanagedapplications/v2
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/solutions/armmanagedapplications/v2#section-documentation
- Licenses: MIT
- Latest release: v2.1.0 (published about 1 year ago)
- Last Synced: 2024-10-29T13:03:37.439Z (about 2 months ago)
- Versions: 2
- Dependent Packages: 1
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.949%
- Stargazers count: 1.735%
- Average: 5.382%
- Dependent packages count: 8.453%
- Dependent repos count: 10.392%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/solutions/armmanagedapplications/v2
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/solutions/armmanagedapplications/v2#section-documentation
- Licenses: mit
- Latest release: v2.1.0 (published about 1 year ago)
- Last Synced: 2024-11-11T02:08:15.721Z (about 1 month ago)
- Versions: 2
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.949%
- Stargazers count: 1.735%
- Average: 5.382%
- Dependent packages count: 8.453%
- Dependent repos count: 10.392%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armdeploymentstacks
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armdeploymentstacks#section-documentation
- Licenses: MIT
- Latest release: v0.2.0 (published about 1 year ago)
- Last Synced: 2024-11-11T02:08:22.402Z (about 1 month ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.953%
- Stargazers count: 1.739%
- Average: 5.54%
- Dependent packages count: 8.899%
- Dependent repos count: 10.567%
go: github.com/azure/azure-sdk-for-go/sdk/storage/azdatalake
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/storage/azdatalake#section-documentation
- Licenses: mit
- Latest release: v1.1.1 (published 10 months ago)
- Last Synced: 2024-11-11T02:08:09.029Z (about 1 month ago)
- Versions: 13
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.953%
- Stargazers count: 1.739%
- Average: 5.54%
- Dependent packages count: 8.899%
- Dependent repos count: 10.567%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/batch/armbatch/v2
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/batch/armbatch/v2#section-documentation
- Licenses: mit
- Latest release: v2.2.0 (published about 1 year ago)
- Last Synced: 2024-10-29T13:03:46.652Z (about 2 months ago)
- Versions: 4
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.953%
- Stargazers count: 1.739%
- Average: 5.54%
- Dependent packages count: 8.899%
- Dependent repos count: 10.567%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/authorization/armauthorization/v3
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/authorization/armauthorization/v3#section-documentation
- Licenses: mit
- Latest release: v3.0.0-beta.2 (published about 1 year ago)
- Last Synced: 2024-10-29T13:03:29.932Z (about 2 months ago)
- Versions: 2
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.953%
- Stargazers count: 1.739%
- Average: 5.54%
- Dependent packages count: 8.899%
- Dependent repos count: 10.567%
go: github.com/azure/azure-sdk-for-go/sdk/tracing/azotel
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/tracing/azotel#section-documentation
- Licenses: mit
- Latest release: v0.4.0 (published about 1 year ago)
- Last Synced: 2024-11-11T02:07:58.580Z (about 1 month ago)
- Versions: 4
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.953%
- Stargazers count: 1.739%
- Average: 5.54%
- Dependent packages count: 8.899%
- Dependent repos count: 10.567%
go: github.com/Azure/Azure-sdk-for-go/sdk/data/azcosmos
- Homepage:
- Documentation: https://pkg.go.dev/github.com/Azure/Azure-sdk-for-go/sdk/data/azcosmos#section-documentation
- Licenses: mit
- Latest release: v1.0.1 (published 8 months ago)
- Last Synced: 2024-11-11T02:08:13.387Z (about 1 month ago)
- Versions: 14
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.955%
- Stargazers count: 1.745%
- Average: 5.587%
- Dependent packages count: 8.938%
- Dependent repos count: 10.711%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/hybridcompute/armhybridcompute/v2
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/hybridcompute/armhybridcompute/v2#section-documentation
- Licenses: mit
- Latest release: v2.0.0-beta.2 (published 8 months ago)
- Last Synced: 2024-11-11T02:07:52.915Z (about 1 month ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Forks count: 0.959%
- Stargazers count: 1.748%
- Average: 5.769%
- Dependent packages count: 9.571%
- Dependent repos count: 10.798%
go: github.com/azure/Azure-sdk-for-go/sdk/azcore
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/Azure-sdk-for-go/sdk/azcore#section-documentation
- Licenses: mit
- Latest release:
- Last Synced: 2024-11-11T02:08:11.665Z (about 1 month ago)
- Versions: 86
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.077%
- Average: 6.28%
- Dependent repos count: 6.484%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/containerorchestratorruntime/armcontainerorchestratorruntime
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/containerorchestratorruntime/armcontainerorchestratorruntime#section-documentation
- Licenses:
- Latest release:
- Last Synced: 2024-11-11T02:08:10.385Z (about 1 month ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.088%
- Average: 6.292%
- Dependent repos count: 6.495%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/containerorchestratorruntime/armcontainerorchestratorruntime
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/containerorchestratorruntime/armcontainerorchestratorruntime#section-documentation
- Licenses: MIT
- Latest release:
- Last Synced: 2024-11-11T02:08:10.288Z (about 1 month ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.088%
- Average: 6.292%
- Dependent repos count: 6.495%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/iotoperations/armiotoperations
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/iotoperations/armiotoperations#section-documentation
- Licenses: MIT
- Latest release:
- Last Synced: 2024-11-11T02:07:44.611Z (about 1 month ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.091%
- Average: 6.295%
- Dependent repos count: 6.499%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/iotoperations/armiotoperations
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/iotoperations/armiotoperations#section-documentation
- Licenses: mit
- Latest release:
- Last Synced: 2024-11-11T02:07:49.845Z (about 1 month ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.091%
- Average: 6.295%
- Dependent repos count: 6.499%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/databoundaries/armdataboundaries
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/databoundaries/armdataboundaries#section-documentation
- Licenses: MIT
- Latest release:
- Last Synced: 2024-11-04T23:05:43.678Z (about 2 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.1%
- Average: 6.305%
- Dependent repos count: 6.509%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/databoundaries/armdataboundaries
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/databoundaries/armdataboundaries#section-documentation
- Licenses: mit
- Latest release:
- Last Synced: 2024-11-11T02:08:11.464Z (about 1 month ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.1%
- Average: 6.305%
- Dependent repos count: 6.509%
go: github.com/azure/azure-sdk-for-go/sdk/ai/azopenaiextensions
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/ai/azopenaiextensions#section-documentation
- Licenses: mit
- Latest release:
- Last Synced: 2024-11-11T02:07:46.489Z (about 1 month ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.113%
- Average: 6.317%
- Dependent repos count: 6.522%
go: github.com/Azure/azure-sdk-for-go/eng/tools/indexer
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/eng/tools/indexer#section-documentation
- Licenses: mit
- Latest release: (published 8 months ago)
- Last Synced: 2024-11-09T01:06:51.368Z (about 1 month ago)
- Versions: 0
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 7.105%
- Average: 7.559%
- Dependent repos count: 8.013%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/migrationdiscovery/armmigrationdiscoverysap
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/migrationdiscovery/armmigrationdiscoverysap#section-documentation
- Licenses: MIT
- Latest release: (published 7 months ago)
- Last Synced: 2024-11-11T02:07:51.099Z (about 1 month ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 7.152%
- Average: 7.609%
- Dependent repos count: 8.066%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/virtualmachineimagebuilder/armvirtualmachineimagebuilder
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/virtualmachineimagebuilder/armvirtualmachineimagebuilder#section-documentation
- Licenses: mit
- Latest release: v1.2.1 (published over 1 year ago)
- Last Synced: 2024-10-29T09:27:20.739Z (about 2 months ago)
- Versions: 9
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/iothub/armiothub
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/iothub/armiothub#section-documentation
- Licenses: mit
- Latest release: v1.3.0 (published about 1 year ago)
- Last Synced: 2024-10-29T11:48:25.997Z (about 2 months ago)
- Versions: 13
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/orbital/armorbital
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/orbital/armorbital#section-documentation
- Licenses: mit
- Latest release: v1.0.0 (published over 2 years ago)
- Last Synced: 2024-11-11T02:07:51.284Z (about 1 month ago)
- Versions: 6
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
go: github.com/azure/azure-sdk-for-go/sdk/data/azappconfig
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/data/azappconfig#section-documentation
- Licenses: mit
- Latest release: v1.1.0 (published 11 months ago)
- Last Synced: 2024-11-11T02:08:09.383Z (about 1 month ago)
- Versions: 9
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
go: github.com/azure/azure-sdk-for-go/sdk/messaging/azeventhubs
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/messaging/azeventhubs#section-documentation
- Licenses: mit
- Latest release: v1.0.3 (published 12 months ago)
- Last Synced: 2024-10-29T13:03:40.757Z (about 2 months ago)
- Versions: 17
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/testbase/armtestbase
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/testbase/armtestbase#section-documentation
- Licenses: mit
- Latest release: v0.7.0 (published about 1 year ago)
- Last Synced: 2024-11-11T02:07:46.368Z (about 1 month ago)
- Versions: 9
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/mobilenetwork/armmobilenetwork
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/mobilenetwork/armmobilenetwork#section-documentation
- Licenses: mit
- Latest release: v1.0.0 (published about 2 years ago)
- Last Synced: 2024-10-29T13:03:33.150Z (about 2 months ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
go: github.com/azure/azure-sdk-for-go/sdk/storage/armstorage
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/storage/armstorage#section-documentation
- Licenses: mit
- Latest release: v0.2.1 (published about 3 years ago)
- Last Synced: 2024-11-11T02:07:45.538Z (about 1 month ago)
- Versions: 4
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/elasticsans/armelasticsans
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/elasticsans/armelasticsans#section-documentation
- Licenses: mit
- Latest release: v0.1.1 (published about 2 years ago)
- Last Synced: 2024-11-11T02:08:11.182Z (about 1 month ago)
- Versions: 2
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/fluidrelay/armfluidrelay
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/fluidrelay/armfluidrelay#section-documentation
- Licenses: MIT
- Latest release: v1.2.0 (published about 1 year ago)
- Last Synced: 2024-10-29T10:09:40.129Z (about 2 months ago)
- Versions: 4
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/workloads/armworkloads
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/workloads/armworkloads#section-documentation
- Licenses: mit
- Latest release: v1.1.0 (published about 1 year ago)
- Last Synced: 2024-11-11T02:08:12.263Z (about 1 month ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/avs/armavs
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/avs/armavs#section-documentation
- Licenses: mit
- Latest release: v1.4.0 (published about 1 year ago)
- Last Synced: 2024-11-11T02:08:12.272Z (about 1 month ago)
- Versions: 11
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/synapse/armsynapse
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/synapse/armsynapse#section-documentation
- Licenses: mit
- Latest release: v0.8.0 (published about 1 year ago)
- Last Synced: 2024-11-11T02:08:12.508Z (about 1 month ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/iotcentral/armiotcentral
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/iotcentral/armiotcentral#section-documentation
- Licenses: mit
- Latest release: v1.2.0 (published about 1 year ago)
- Last Synced: 2024-11-11T02:08:16.149Z (about 1 month ago)
- Versions: 9
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
go: github.com/azure/azure-sdk-for-go/sdk/cosmos/armcosmos
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/cosmos/armcosmos#section-documentation
- Licenses: mit
- Latest release: v0.2.1 (published about 3 years ago)
- Last Synced: 2024-11-11T02:08:15.588Z (about 1 month ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
go: github.com/azure/azure-sdk-for-go/sdk/synapse/azartifacts
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/synapse/azartifacts#section-documentation
- Licenses: mit
- Latest release: v0.1.2 (published over 2 years ago)
- Last Synced: 2024-11-11T02:08:15.593Z (about 1 month ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
go: github.com/azure/azure-sdk-for-go/sdk/messaging/eventgrid/azsystemevents
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/messaging/eventgrid/azsystemevents#section-documentation
- Licenses: mit
- Latest release: v0.3.0 (published 9 months ago)
- Last Synced: 2024-11-04T23:05:27.829Z (about 2 months ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 8.575%
- Average: 9.123%
- Dependent repos count: 9.671%
go: github.com/Azure/azure-sdk-for-go/sdk/messaging/eventgrid/azeventgrid
Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information.
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/messaging/eventgrid/azeventgrid#section-documentation
- Licenses: MIT
- Latest release: v1.0.0 (published 9 months ago)
- Last Synced: 2024-11-11T02:08:08.813Z (about 1 month ago)
- Versions: 2
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 8.602%
- Average: 9.151%
- Dependent repos count: 9.7%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/springappdiscovery/armspringappdiscovery
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/springappdiscovery/armspringappdiscovery#section-documentation
- Licenses: MIT
- Latest release: v0.1.0 (published 11 months ago)
- Last Synced: 2024-11-04T23:05:28.355Z (about 2 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 8.754%
- Average: 9.313%
- Dependent repos count: 9.871%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/recoveryservices/armrecoveryservicesbackup/v4
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/recoveryservices/armrecoveryservicesbackup/v4#section-documentation
- Licenses: mit
- Latest release: v4.0.0 (published 11 months ago)
- Last Synced: 2024-10-29T13:03:29.103Z (about 2 months ago)
- Versions: 2
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 9.049%
- Average: 9.627%
- Dependent repos count: 10.204%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v5
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v5#section-documentation
- Licenses: MIT
- Latest release: v5.1.1 (published 9 months ago)
- Last Synced: 2024-11-04T23:05:33.049Z (about 2 months ago)
- Versions: 4
- Dependent Packages: 9
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 9.507%
- Average: 10.113%
- Dependent repos count: 10.72%
go: github.com/azure/azure-sdk-for-go/sdk/resourcemanager/dataprotection/armdataprotection/v3
- Homepage:
- Documentation: https://pkg.go.dev/github.com/azure/azure-sdk-for-go/sdk/resourcemanager/dataprotection/armdataprotection/v3#section-documentation
- Licenses: mit
- Latest release: v3.0.0 (published about 1 year ago)
- Last Synced: 2024-10-29T13:03:25.024Z (about 2 months ago)
- Versions: 2
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 9.507%
- Average: 10.113%
- Dependent repos count: 10.72%
go: github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/servicefabric/armservicefabric/v2
- Homepage: https://github.com/Azure/azure-sdk-for-go
- Documentation: https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/servicefabric/armservicefabric/v2#section-documentation
- Licenses: MIT
- Latest release: v2.0.0 (published about 1 year ago)
- Last Synced: 2024-11-04T23:05:34.581Z (about 2 months ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 9.52%
- Average: 10.128%
- Dependent repos count: 10.735%
Dependencies
- azure/azure-sdk-actions main composite
- mcr.microsoft.com/cbl-mariner/base/core 1.0 build
- mcr.microsoft.com/oss/go/microsoft/golang 1.18 build
- mcr.microsoft.com/cbl-mariner/base/core 1.0 build
- mcr.microsoft.com/oss/go/microsoft/golang 1.18 build
- github.com/Azure/azure-sdk-for-go v63.3.0+incompatible
- github.com/Azure/azure-sdk-for-go/eng/tools/internal v0.0.0-20220420173156-c817ffeaf01c
- github.com/spf13/cobra v1.4.0
- github.com/Azure/azure-sdk-for-go v54.2.1+incompatible
- github.com/Azure/azure-sdk-for-go v63.3.0+incompatible
- github.com/Azure/azure-sdk-for-go/eng/tools/internal v0.0.0-20220420173156-c817ffeaf01c
- github.com/Azure/go-autorest v14.2.0+incompatible
- github.com/Azure/go-autorest/autorest v0.11.18
- github.com/Azure/go-autorest/autorest/adal v0.9.13
- github.com/Azure/go-autorest/autorest/date v0.3.0
- github.com/Azure/go-autorest/autorest/mocks v0.4.1
- github.com/Azure/go-autorest/logger v0.2.1
- github.com/Azure/go-autorest/tracing v0.6.0
- github.com/Masterminds/semver v1.5.0
- github.com/cpuguy83/go-md2man/v2 v2.0.1
- github.com/form3tech-oss/jwt-go v3.2.2+incompatible
- github.com/inconshreveable/mousetrap v1.0.0
- github.com/russross/blackfriday/v2 v2.1.0
- github.com/spf13/cobra v1.4.0
- github.com/spf13/pflag v1.0.5
- golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
- golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0
- golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
- golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a
- golang.org/x/sys v0.0.0-20190412213103-97732733099d
- golang.org/x/text v0.3.0
- gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
- gopkg.in/yaml.v2 v2.4.0
- github.com/Azure/azure-sdk-for-go v63.3.0+incompatible
- github.com/spf13/cobra v1.4.0
- github.com/Azure/azure-sdk-for-go v63.3.0+incompatible
- github.com/cpuguy83/go-md2man/v2 v2.0.1
- github.com/inconshreveable/mousetrap v1.0.0
- github.com/russross/blackfriday/v2 v2.1.0
- github.com/spf13/cobra v1.4.0
- github.com/spf13/pflag v1.0.5
- gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
- gopkg.in/yaml.v2 v2.4.0
- github.com/Azure/azure-sdk-for-go/eng/tools/internal v0.0.0-20221125052524-df8390a6777e
- github.com/Masterminds/semver v1.5.0
- github.com/Microsoft/go-winio v0.4.16
- github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7
- github.com/acomagu/bufpipe v1.0.3
- github.com/ahmetb/go-linq/v3 v3.2.0
- github.com/davecgh/go-spew v1.1.1
- github.com/emirpasic/gods v1.12.0
- github.com/go-git/gcfg v1.5.0
- github.com/go-git/go-billy/v5 v5.3.1
- github.com/go-git/go-git/v5 v5.4.2
- github.com/golang/protobuf v1.4.2
- github.com/google/go-github/v32 v32.1.0
- github.com/google/go-querystring v1.0.0
- github.com/hashicorp/errwrap v1.0.0
- github.com/hashicorp/go-multierror v1.1.1
- github.com/imdario/mergo v0.3.12
- github.com/inconshreveable/mousetrap v1.0.0
- github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99
- github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351
- github.com/mitchellh/go-homedir v1.1.0
- github.com/pmezard/go-difflib v1.0.0
- github.com/sergi/go-diff v1.1.0
- github.com/spf13/cobra v1.4.0
- github.com/spf13/pflag v1.0.5
- github.com/stretchr/testify v1.7.2
- github.com/xanzy/ssh-agent v0.3.0
- golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b
- golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd
- golang.org/x/oauth2 v0.0.0-20220608161450-d0670ef3b1eb
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- google.golang.org/appengine v1.6.6
- google.golang.org/protobuf v1.25.0
- gopkg.in/warnings.v0 v0.1.2
- gopkg.in/yaml.v3 v3.0.1
- 428 dependencies
- github.com/Azure/azure-sdk-for-go v63.3.0+incompatible
- github.com/Azure/azure-sdk-for-go v63.3.0+incompatible
- github.com/Azure/azure-sdk-for-go v54.2.1+incompatible
- github.com/Azure/go-autorest v14.2.0+incompatible
- github.com/Azure/go-autorest/autorest v0.11.18
- github.com/Azure/go-autorest/autorest/adal v0.9.13
- github.com/Azure/go-autorest/autorest/date v0.3.0
- github.com/Azure/go-autorest/logger v0.2.1
- github.com/Azure/go-autorest/tracing v0.6.0
- github.com/Masterminds/semver v1.5.0
- github.com/form3tech-oss/jwt-go v3.2.2+incompatible
- golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0
- github.com/Azure/azure-sdk-for-go v54.2.1+incompatible
- github.com/Azure/go-autorest v14.2.0+incompatible
- github.com/Azure/go-autorest/autorest v0.11.18
- github.com/Azure/go-autorest/autorest/adal v0.9.13
- github.com/Azure/go-autorest/autorest/date v0.3.0
- github.com/Azure/go-autorest/autorest/mocks v0.4.1
- github.com/Azure/go-autorest/logger v0.2.1
- github.com/Azure/go-autorest/tracing v0.6.0
- github.com/Masterminds/semver v1.5.0
- github.com/form3tech-oss/jwt-go v3.2.2+incompatible
- golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
- golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0
- golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
- golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a
- golang.org/x/sys v0.0.0-20190412213103-97732733099d
- golang.org/x/text v0.3.0
- github.com/Azure/azure-sdk-for-go v63.3.0+incompatible
- github.com/Azure/azure-sdk-for-go/eng/tools/internal v0.0.0-20220420173156-c817ffeaf01c
- github.com/spf13/cobra v1.4.0
- github.com/Azure/azure-sdk-for-go v54.2.1+incompatible
- github.com/Azure/azure-sdk-for-go v63.3.0+incompatible
- github.com/Azure/azure-sdk-for-go/eng/tools/internal v0.0.0-20220420173156-c817ffeaf01c
- github.com/Azure/go-autorest v14.2.0+incompatible
- github.com/Azure/go-autorest/autorest v0.11.18
- github.com/Azure/go-autorest/autorest/adal v0.9.13
- github.com/Azure/go-autorest/autorest/date v0.3.0
- github.com/Azure/go-autorest/autorest/mocks v0.4.1
- github.com/Azure/go-autorest/logger v0.2.1
- github.com/Azure/go-autorest/tracing v0.6.0
- github.com/Masterminds/semver v1.5.0
- github.com/cpuguy83/go-md2man/v2 v2.0.1
- github.com/form3tech-oss/jwt-go v3.2.2+incompatible
- github.com/inconshreveable/mousetrap v1.0.0
- github.com/russross/blackfriday/v2 v2.1.0
- github.com/spf13/cobra v1.4.0
- github.com/spf13/pflag v1.0.5
- golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
- golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0
- golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
- golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a
- golang.org/x/sys v0.0.0-20190412213103-97732733099d
- golang.org/x/text v0.3.0
- gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
- gopkg.in/yaml.v2 v2.4.0
- github.com/Azure/azure-sdk-for-go v63.3.0+incompatible
- github.com/Azure/azure-sdk-for-go/eng/tools/internal v0.0.0-20220420173156-c817ffeaf01c
- github.com/spf13/cobra v1.4.0
- golang.org/x/sys v0.0.0-20220412211240-33da011f77ad
- golang.org/x/tools v0.1.10
- golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f
- github.com/Azure/azure-sdk-for-go v54.2.1+incompatible
- github.com/Azure/azure-sdk-for-go v63.3.0+incompatible
- github.com/Azure/azure-sdk-for-go/eng/tools/internal v0.0.0-20220420173156-c817ffeaf01c
- github.com/Azure/go-autorest v14.2.0+incompatible
- github.com/Azure/go-autorest/autorest v0.11.18
- github.com/Azure/go-autorest/autorest/adal v0.9.13
- github.com/Azure/go-autorest/autorest/date v0.3.0
- github.com/Azure/go-autorest/autorest/mocks v0.4.1
- github.com/Azure/go-autorest/logger v0.2.1
- github.com/Azure/go-autorest/tracing v0.6.0
- github.com/Masterminds/semver v1.5.0
- github.com/cpuguy83/go-md2man/v2 v2.0.1
- github.com/form3tech-oss/jwt-go v3.2.2+incompatible
- github.com/inconshreveable/mousetrap v1.0.0
- github.com/russross/blackfriday/v2 v2.1.0
- github.com/spf13/cobra v1.4.0
- github.com/spf13/pflag v1.0.5
- github.com/yuin/goldmark v1.4.1
- golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
- golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0
- golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
- golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3
- golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
- golang.org/x/net v0.0.0-20190620200207-3b0461eec859
- golang.org/x/net v0.0.0-20210226172049-e18ecbb05110
- golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f
- golang.org/x/sync v0.0.0-20190423024810-112230192c58
- golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
- golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a
- golang.org/x/sys v0.0.0-20190412213103-97732733099d
- golang.org/x/sys v0.0.0-20201119102817-f84b799fce68
- golang.org/x/sys v0.0.0-20210423082822-04245dca01da
- golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1
- golang.org/x/sys v0.0.0-20211019181941-9d821ace8654
- golang.org/x/sys v0.0.0-20220412211240-33da011f77ad
- golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1
- golang.org/x/text v0.3.0
- golang.org/x/text v0.3.3
- golang.org/x/text v0.3.6
- golang.org/x/text v0.3.7
- golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e
- golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e
- golang.org/x/tools v0.1.10
- golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7
- golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898
- golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
- golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f
- gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
- gopkg.in/yaml.v2 v2.4.0
- github.com/Masterminds/semver v1.5.0
- github.com/inconshreveable/mousetrap v1.0.0
- github.com/spf13/cobra v1.4.0
- github.com/spf13/pflag v1.0.5
- github.com/Masterminds/semver v1.5.0
- github.com/cpuguy83/go-md2man/v2 v2.0.1
- github.com/inconshreveable/mousetrap v1.0.0
- github.com/russross/blackfriday/v2 v2.1.0
- github.com/spf13/cobra v1.4.0
- github.com/spf13/pflag v1.0.5
- gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
- gopkg.in/yaml.v2 v2.4.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.1.1
- github.com/davecgh/go-spew v1.1.0
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.1.1
- github.com/davecgh/go-spew v1.1.0
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/objx v0.1.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/text v0.3.7
- gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
- gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
- github.com/Azure/azure-sdk-for-go/sdk/azcore v0.22.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v0.9.2
- golang.org/x/net v0.0.0-20210610132358-84b48f89b13b
- golang.org/x/text v0.3.6
- github.com/Azure/azure-sdk-for-go/sdk/azcore v0.22.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v0.8.3
- github.com/Azure/azure-sdk-for-go/sdk/internal v0.9.2
- github.com/davecgh/go-spew v1.1.0
- github.com/dnaeon/go-vcr v1.1.0
- github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/objx v0.1.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
- golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
- golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
- golang.org/x/net v0.0.0-20201010224723-4f7140c49acb
- golang.org/x/net v0.0.0-20210610132358-84b48f89b13b
- golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a
- golang.org/x/sys v0.0.0-20190412213103-97732733099d
- golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f
- golang.org/x/sys v0.0.0-20201119102817-f84b799fce68
- golang.org/x/sys v0.0.0-20210423082822-04245dca01da
- golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1
- golang.org/x/text v0.3.0
- golang.org/x/text v0.3.3
- golang.org/x/text v0.3.6
- golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e
- gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
- gopkg.in/yaml.v2 v2.2.1
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.7.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt/v4 v4.4.2
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.7.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt/v4 v4.4.2
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
- gopkg.in/yaml.v2 v2.2.1
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/davecgh/go-spew v1.1.0
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/davecgh/go-spew v1.1.0
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/objx v0.1.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/text v0.3.7
- gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
- gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
- github.com/Azure/azure-sdk-for-go v63.2.0+incompatible
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.1
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go v63.2.0+incompatible
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/objx v0.1.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/objx v0.1.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
- gopkg.in/yaml.v2 v2.2.1
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v0.21.0
- github.com/Azure/azure-sdk-for-go/sdk/data/aztables v0.6.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v0.9.2
- github.com/davecgh/go-spew v1.1.1
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v0.21.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v0.13.0
- github.com/Azure/azure-sdk-for-go/sdk/data/aztables v0.6.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v0.8.3
- github.com/Azure/azure-sdk-for-go/sdk/internal v0.9.1
- github.com/Azure/azure-sdk-for-go/sdk/internal v0.9.2
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/objx v0.1.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
- golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
- golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897
- golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
- golang.org/x/net v0.0.0-20201010224723-4f7140c49acb
- golang.org/x/net v0.0.0-20210610132358-84b48f89b13b
- golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f
- golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a
- golang.org/x/sys v0.0.0-20190412213103-97732733099d
- golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f
- golang.org/x/sys v0.0.0-20201119102817-f84b799fce68
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20210423082822-04245dca01da
- golang.org/x/sys v0.0.0-20211019181941-9d821ace8654
- golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1
- golang.org/x/text v0.3.0
- golang.org/x/text v0.3.3
- golang.org/x/text v0.3.6
- golang.org/x/text v0.3.7
- golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e
- gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
- gopkg.in/yaml.v2 v2.2.1
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/davecgh/go-spew v1.1.0
- github.com/dnaeon/go-vcr v1.1.0
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/net v0.0.0-20201010224723-4f7140c49acb
- golang.org/x/text v0.3.3
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
- github.com/davecgh/go-spew v1.1.0
- github.com/dnaeon/go-vcr v1.1.0
- github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/objx v0.1.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
- golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
- golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
- golang.org/x/net v0.0.0-20201010224723-4f7140c49acb
- golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f
- golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a
- golang.org/x/sys v0.0.0-20190412213103-97732733099d
- golang.org/x/text v0.3.3
- golang.org/x/text v0.3.0
- golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e
- gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
- gopkg.in/yaml.v2 v2.2.1
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
- code.cloudfoundry.org/clock v0.0.0-20180518195852-02e53af36e6c
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.1.2
- github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/eventhub/armeventhub v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/davecgh/go-spew v1.1.1
- github.com/gofrs/uuid v3.3.0+incompatible
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang/mock v1.6.0
- github.com/google/uuid v1.1.1
- github.com/joho/godotenv v1.4.0
- github.com/kylelemons/godebug v1.1.0
- github.com/microsoft/ApplicationInsights-Go v0.4.4
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.1
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- code.cloudfoundry.org/clock v0.0.0-20180518195852-02e53af36e6c
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.1.2
- github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/eventhub/armeventhub v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/davecgh/go-spew v1.1.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/fsnotify/fsnotify v1.4.7
- github.com/gofrs/uuid v3.3.0+incompatible
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/golang/mock v1.6.0
- github.com/golang/protobuf v1.2.0
- github.com/google/uuid v1.1.1
- github.com/hpcloud/tail v1.0.0
- github.com/joho/godotenv v1.4.0
- github.com/kr/pretty v0.1.0
- github.com/kr/pty v1.1.1
- github.com/kr/text v0.1.0
- github.com/kylelemons/godebug v1.1.0
- github.com/microsoft/ApplicationInsights-Go v0.4.4
- github.com/montanaflynn/stats v0.6.6
- github.com/onsi/ginkgo v1.6.0
- github.com/onsi/ginkgo v1.8.0
- github.com/onsi/gomega v1.5.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/objx v0.1.0
- github.com/stretchr/testify v1.7.1
- github.com/tedsuo/ifrit v0.0.0-20180802180643-bea94bb476cc
- github.com/yuin/goldmark v1.3.5
- golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
- golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/mod v0.4.2
- golang.org/x/net v0.0.0-20180906233101-161cd47e91fd
- golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
- golang.org/x/net v0.0.0-20190620200207-3b0461eec859
- golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
- golang.org/x/sync v0.0.0-20190423024810-112230192c58
- golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
- golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
- golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a
- golang.org/x/sys v0.0.0-20190412213103-97732733099d
- golang.org/x/sys v0.0.0-20201119102817-f84b799fce68
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44
- golang.org/x/sys v0.0.0-20210510120138-977fb7262007
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1
- golang.org/x/text v0.3.0
- golang.org/x/text v0.3.3
- golang.org/x/text v0.3.7
- golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e
- golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e
- golang.org/x/tools v0.1.1
- golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7
- golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898
- golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
- gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
- gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127
- gopkg.in/fsnotify.v1 v1.4.7
- gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7
- gopkg.in/yaml.v2 v2.2.1
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- code.cloudfoundry.org/clock v0.0.0-20180518195852-02e53af36e6c
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.1.2
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.1
- github.com/gin-gonic/gin v1.7.7
- github.com/gofrs/uuid v3.3.0+incompatible
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/go-cmp v0.5.1
- github.com/google/uuid v1.1.1
- github.com/joho/godotenv v1.3.0
- github.com/klauspost/compress v1.10.3
- github.com/kylelemons/godebug v1.1.0
- github.com/microsoft/ApplicationInsights-Go v0.4.4
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- nhooyr.io/websocket v1.8.6
- retract v1.1.2
- code.cloudfoundry.org/clock v0.0.0-20180518195852-02e53af36e6c
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.1.2
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/fsnotify/fsnotify v1.4.7
- github.com/gin-contrib/sse v0.1.0
- github.com/gin-gonic/gin v1.6.3
- github.com/gin-gonic/gin v1.7.7
- github.com/go-playground/assert/v2 v2.0.1
- github.com/go-playground/locales v0.13.0
- github.com/go-playground/universal-translator v0.17.0
- github.com/go-playground/validator/v10 v10.2.0
- github.com/go-playground/validator/v10 v10.4.1
- github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee
- github.com/gobwas/pool v0.2.0
- github.com/gobwas/ws v1.0.2
- github.com/gofrs/uuid v3.3.0+incompatible
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/golang/protobuf v1.2.0
- github.com/golang/protobuf v1.3.3
- github.com/golang/protobuf v1.3.5
- github.com/google/go-cmp v0.4.0
- github.com/google/go-cmp v0.5.1
- github.com/google/gofuzz v1.0.0
- github.com/google/uuid v1.1.1
- github.com/gorilla/websocket v1.4.1
- github.com/hpcloud/tail v1.0.0
- github.com/joho/godotenv v1.3.0
- github.com/json-iterator/go v1.1.9
- github.com/klauspost/compress v1.10.3
- github.com/kr/pretty v0.1.0
- github.com/kr/pty v1.1.1
- github.com/kr/text v0.1.0
- github.com/kylelemons/godebug v1.1.0
- github.com/leodido/go-urn v1.2.0
- github.com/mattn/go-isatty v0.0.12
- github.com/microsoft/ApplicationInsights-Go v0.4.4
- github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421
- github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742
- github.com/montanaflynn/stats v0.6.6
- github.com/onsi/ginkgo v1.6.0
- github.com/onsi/ginkgo v1.8.0
- github.com/onsi/gomega v1.5.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/objx v0.1.0
- github.com/stretchr/testify v1.3.0
- github.com/stretchr/testify v1.4.0
- github.com/stretchr/testify v1.7.0
- github.com/tedsuo/ifrit v0.0.0-20180802180643-bea94bb476cc
- github.com/ugorji/go v1.1.7
- github.com/ugorji/go/codec v1.1.7
- golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
- golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20180906233101-161cd47e91fd
- golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f
- golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e
- golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a
- golang.org/x/sys v0.0.0-20190412213103-97732733099d
- golang.org/x/sys v0.0.0-20200116001909-b77594299b42
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.0
- golang.org/x/text v0.3.2
- golang.org/x/text v0.3.7
- golang.org/x/time v0.0.0-20191024005414-555d28b269f0
- golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e
- golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
- golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
- gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
- gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127
- gopkg.in/fsnotify.v1 v1.4.7
- gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7
- gopkg.in/yaml.v2 v2.2.1
- gopkg.in/yaml.v2 v2.2.2
- gopkg.in/yaml.v2 v2.2.8
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- nhooyr.io/websocket v1.8.6
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.1.4
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.1.4
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/davecgh/go-spew v1.1.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/objx v0.1.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
- gopkg.in/yaml.v2 v2.2.1
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/internal v1.1.1
- github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/internal v1.1.1
- github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/objx v0.1.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
- gopkg.in/yaml.v2 v2.2.1
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.2.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.7.0
- github.com/golang-jwt/jwt/v4 v4.4.2
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.2.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.7.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt/v4 v4.4.2
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.2.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.7.0
- github.com/golang-jwt/jwt/v4 v4.4.2
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.2.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.7.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt/v4 v4.4.2
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.2.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.7.0
- github.com/golang-jwt/jwt/v4 v4.4.2
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.2.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.7.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt/v4 v4.4.2
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.2.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.7.0
- github.com/golang-jwt/jwt/v4 v4.4.2
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.2.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.7.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt/v4 v4.4.2
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/internal v1.1.1
- github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.1.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/internal v1.1.1
- github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/davecgh/go-spew v1.1.0
- github.com/davecgh/go-spew v1.1.1
- github.com/dnaeon/go-vcr v1.1.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/golang-jwt/jwt/v4 v4.2.0
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5
- github.com/montanaflynn/stats v0.6.6
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- github.com/pmezard/go-difflib v1.0.0
- github.com/stretchr/objx v0.1.0
- github.com/stretchr/testify v1.7.0
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7
- gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
- gopkg.in/yaml.v2 v2.2.1
- gopkg.in/yaml.v2 v2.4.0
- gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
- gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
- github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0
- github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0
- github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0
- github.com/golang-jwt/jwt v3.2.1+incompatible
- github.com/google/uuid v1.1.1
- github.com/kylelemons/godebug v1.1.0
- github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4
- golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88
- golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4
- golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e
- golang.org/x/text v0.3.7