Ecosyste.ms: Packages

An open API service providing package, version and dependency metadata of many open source software ecosystems and registries.

Top 0.6% on proxy.golang.org
Top 0.1% dependent packages on proxy.golang.org
Top 0.1% dependent repos on proxy.golang.org
Top 1.0% forks on proxy.golang.org
Top 0.1% docker downloads on proxy.golang.org

proxy.golang.org : 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.

Registry - Source - Documentation - JSON
purl: pkg:golang/github.com/%21azure/azure-sdk-for-go/sdk/azcore
Keywords: azure, azure-sdk, go, golang, hacktoberfest, microsoft, rest, sdk
License: MIT
Latest release: 6 months ago
First release: over 4 years ago
Namespace: github.com/Azure/azure-sdk-for-go/sdk
Dependent packages: 4,200
Dependent repositories: 5,959
Stars: 1,409 on GitHub
Forks: 809 on GitHub
Docker dependents: 2,050
Docker downloads: 18,804,063,868
Total Commits: 6188
Committers: 211
Average commits per author: 29.327
Development Distribution Score (DDS): 0.829
More commit stats: commits.ecosyste.ms
See more repository details: repos.ecosyste.ms
Last synced: about 16 hours ago

Top 7.6% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/oracledatabase/armoracledatabase
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
Latest release: 5 days ago - 1,531 stars on GitHub
Top 4.5% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/tools/indexer
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
Latest release: 8 days ago - 1,239 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/tools/generator
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
Latest release: 8 days ago - 1,239 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/tools/deprecate
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
Latest release: 8 days ago - 1,239 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/tools/apidiff
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
Latest release: 8 days ago - 1,239 stars on GitHub
Top 7.6% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/migrationdiscovery/armmigrationdiscoverysap
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
Latest release: 8 days ago - 1,523 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/tools/pkgchk
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
Latest release: 8 days ago - 1,239 stars on GitHub
Top 4.2% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/tools/profileBuilder
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
Latest release: 12 days ago - 1 dependent repositories - 1,239 stars on GitHub
Top 7.6% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/eng/tools/indexer
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
Latest release: 13 days ago - 1,523 stars on GitHub
Top 7.6% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/eng/tools/smoketests
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
Latest release: 13 days ago - 1,523 stars on GitHub
Top 0.6% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/internal v1.8.0
internal contains content for Azure SDK developers.
36 versions - Latest release: 13 days ago - 4,065 dependent packages - 5,951 dependent repositories - 1,236 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/internal v1.8.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
36 versions - Latest release: 13 days ago - 1,236 stars on GitHub
Top 4.7% on proxy.golang.org
github.com/Azure/Azure-sdk-for-go/sdk/internal v1.8.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
36 versions - Latest release: 13 days ago - 1,239 stars on GitHub
Top 9.1% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/ai/azopenaiassistants v0.1.1
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
2 versions - Latest release: 15 days ago - 1,515 stars on GitHub
Top 4.5% on proxy.golang.org
github.com/Azure/Azure-sdk-for-go/sdk/messaging/azeventhubs v1.2.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
14 versions - Latest release: 15 days ago - 1,239 stars on GitHub
Top 5.4% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/azidentity/cache v0.2.2
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
4 versions - Latest release: 16 days ago - 7 dependent packages - 1,409 stars on GitHub
Top 5.4% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/azidentity/cache v0.2.2
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
4 versions - Latest release: 16 days ago - 1,409 stars on GitHub
Top 5.6% on proxy.golang.org
github.com/Azure/Azure-sdk-for-go/sdk/data/azcosmos v1.0.1
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
11 versions - Latest release: 20 days ago - 1,409 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/data/azcosmos v1.0.1
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
11 versions - Latest release: 20 days ago - 1,239 stars on GitHub
Top 5.5% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/mysql/armmysqlflexibleservers/v2 v2.0.0-beta.3
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
3 versions - Latest release: 24 days ago - 1,395 stars on GitHub
Top 5.5% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/mysql/armmysqlflexibleservers/v2 v2.0.0-beta.3
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
3 versions - Latest release: 24 days ago - 1,395 stars on GitHub
Top 7.4% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
Latest release: 27 days ago - 1,531 stars on GitHub
Top 7.4% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v7 v7.0.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
1 version - Latest release: 28 days ago - 1,531 stars on GitHub
Top 7.4% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/devcenter/armdevcenter/v2
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
Latest release: 29 days ago - 1,531 stars on GitHub
Top 7.4% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/containerservice/armcontainerservice/v5
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
Latest release: 29 days ago - 2 dependent packages - 1,531 stars on GitHub
Top 7.4% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/containerservice/armcontainerservice/v5 v5.0.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
1 version - Latest release: 30 days ago - 1,531 stars on GitHub
Top 7.4% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/devcenter/armdevcenter/v2 v2.0.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
1 version - Latest release: 30 days ago - 1,531 stars on GitHub
Top 7.4% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/deviceregistry/armdeviceregistry
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
Latest release: 30 days ago - 1,531 stars on GitHub
Top 7.4% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/standbypool/armstandbypool
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
Latest release: 30 days ago - 1,531 stars on GitHub
Top 7.4% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/standbypool/armstandbypool v0.1.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
1 version - Latest release: about 1 month ago - 1,531 stars on GitHub
Top 7.4% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/deviceregistry/armdeviceregistry v0.1.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
1 version - Latest release: about 1 month ago - 1,531 stars on GitHub
Top 5.5% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/postgresql/armpostgresqlflexibleservers/v4 v4.0.0-beta.5
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
5 versions - Latest release: about 1 month ago - 1,395 stars on GitHub
Top 5.5% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/postgresql/armpostgresqlflexibleservers/v4 v4.0.0-beta.5
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
5 versions - Latest release: about 1 month ago - 1,395 stars on GitHub
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/healthcareapis/armhealthcareapis/v2 v2.1.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
2 versions - Latest release: about 1 month ago - 1,464 stars on GitHub
Top 5.8% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/hybridcompute/armhybridcompute/v2 v2.0.0-beta.2
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
2 versions - Latest release: about 1 month ago - 1,409 stars on GitHub
Top 5.8% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/hybridcompute/armhybridcompute/v2 v2.0.0-beta.2
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
2 versions - Latest release: about 1 month ago - 1,409 stars on GitHub
Top 5.5% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute/v5 v5.7.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
13 versions - Latest release: about 1 month ago - 1,395 stars on GitHub
Top 5.6% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/selfhelp/armselfhelp/v2 v2.0.0-beta.4
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
4 versions - Latest release: about 1 month ago - 1,409 stars on GitHub
Top 5.6% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/selfhelp/armselfhelp/v2 v2.0.0-beta.4
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
4 versions - Latest release: about 1 month ago - 1,409 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/support/armsupport v1.3.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
9 versions - Latest release: about 1 month ago - 1,239 stars on GitHub
Top 9.1% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/monitor/ingestion/azlogs v1.0.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
2 versions - Latest release: about 1 month ago - 1,518 stars on GitHub
Top 5.6% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/cdn/armcdn/v2 v2.2.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
3 versions - Latest release: about 1 month ago - 1,409 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/frontdoor/armfrontdoor v1.4.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
10 versions - Latest release: about 1 month ago - 1,239 stars on GitHub
Top 9.2% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/monitor/query/azmetrics v1.0.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
2 versions - Latest release: about 1 month ago - 1,508 stars on GitHub
Top 9.1% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/monitor/query/azlogs v1.0.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
2 versions - Latest release: about 1 month ago - 1,517 stars on GitHub
Top 2.1% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/storage/azfile v1.2.2
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
10 versions - Latest release: about 1 month ago - 21 dependent packages - 1 dependent repositories - 1,275 stars on GitHub
Top 9.2% on proxy.golang.org
github.com/AZURE/azure-sdk-for-go/sdk/storage/azblob v1.3.2
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
19 versions - Latest release: about 1 month ago - 1,506 stars on GitHub
Top 0.6% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.2
This example is a quick-starter and demonstrates how to get started using the Azure Blob Storage ...
19 versions - Latest release: about 1 month ago - 2,043 dependent packages - 3,087 dependent repositories - 1,266 stars on GitHub
Top 9.2% on proxy.golang.org
github.com/Azure/Azure-sdk-for-go/sdk/storage/azblob v1.3.2
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
19 versions - Latest release: about 1 month ago - 1,507 stars on GitHub
Top 4.5% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/storage/azblob v1.3.2
This example is a quick-starter and demonstrates how to get started using the Azure Blob Storage ...
19 versions - Latest release: about 1 month ago - 1,523 stars on GitHub
Top 5.6% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/storage/azfile v1.2.2
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
9 versions - Latest release: about 1 month ago - 1,271 stars on GitHub
Top 4.5% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.0.1
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
3 versions - Latest release: about 1 month ago - 1,239 stars on GitHub
Top 1.7% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.0.1
Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See Lic...
12 versions - Latest release: about 1 month ago - 214 dependent packages - 171 dependent repositories - 1,266 stars on GitHub
Top 4.5% on proxy.golang.org
github.com/AZure/azure-sdk-for-go/sdk/azidentity v1.5.2
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
58 versions - Latest release: about 1 month ago - 1,239 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/azidentity v1.5.2
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
57 versions - Latest release: about 1 month ago - 1,531 stars on GitHub
Top 4.7% on proxy.golang.org
github.com/azure/Azure-sdk-for-go/sdk/azidentity v1.5.2
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
58 versions - Latest release: about 1 month ago - 1,239 stars on GitHub
Top 7.6% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/migrationdiscovery/armmigrationdiscoverysap v0.1.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
1 version - Latest release: about 2 months ago - 1,530 stars on GitHub
Top 9.1% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/messaging/eventgrid/azsystemevents v0.3.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
3 versions - Latest release: about 2 months ago - 1,515 stars on GitHub
Top 9.1% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/messaging/eventgrid/azsystemevents v0.3.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
3 versions - Latest release: about 2 months ago - 1,515 stars on GitHub
Top 5.5% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/hdinsightcontainers/armhdinsightcontainers v0.3.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
3 versions - Latest release: about 2 months ago - 1,395 stars on GitHub
Top 4.7% on proxy.golang.org
github.com/Azure/Azure-sdk-for-go/sdk/azcore v1.11.1
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
81 versions - Latest release: about 2 months ago - 1,239 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/azcore v1.11.1
Package azcore implements an HTTP request/response middleware pipeline used by Azure SDK clients....
81 versions - Latest release: about 2 months ago - 1,531 stars on GitHub
Top 5.5% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/ai/azopenai v0.5.1
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
7 versions - Latest release: about 2 months ago - 1,395 stars on GitHub
Top 9.2% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/messaging/eventgrid/azeventgrid v1.0.0
Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See Lic...
2 versions - Latest release: about 2 months ago - 1,513 stars on GitHub
Top 9.1% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/messaging/eventgrid/azeventgrid v1.0.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
2 versions - Latest release: about 2 months ago - 1,515 stars on GitHub
Top 4.5% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.7.0
Package azservicebus provides clients for sending and receiving messages with Azure Service Bus. ...
30 versions - Latest release: about 2 months ago - 1,523 stars on GitHub
Top 1.4% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/messaging/azeventhubs v1.1.0
Shows how to start consuming events in partitions in an Event Hub using the ConsumerClient. If y...
13 versions - Latest release: about 2 months ago - 34 dependent packages - 10 dependent repositories - 1,273 stars on GitHub
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v5 v5.1.1
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
3 versions - Latest release: about 2 months ago - 9 dependent packages - 1,464 stars on GitHub
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v5 v5.1.1
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
3 versions - Latest release: about 2 months ago - 1,464 stars on GitHub
Top 5.6% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/messaging/azeventgrid v0.5.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
5 versions - Latest release: about 2 months ago - 1,298 stars on GitHub
Top 5.1% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/messaging/azeventgrid v0.5.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
24 versions - Latest release: about 2 months ago - 2 dependent packages - 1,299 stars on GitHub
Top 5.5% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/sphere/armsphere v1.0.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
3 versions - Latest release: about 2 months ago - 1,395 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/workloadssapvirtualinstance/armworkloadssapvirtualinstance v0.1.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
1 version - Latest release: about 2 months ago - 1,523 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/workloadssapvirtualinstance/armworkloadssapvirtualinstance v0.1.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
1 version - Latest release: about 2 months ago - 1,523 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/mobilenetwork/armmobilenetwork/v4 v4.0.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
1 version - Latest release: 2 months ago - 1,522 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/mobilenetwork/armmobilenetwork/v4 v4.0.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
1 version - Latest release: 2 months ago - 1,523 stars on GitHub
Top 4.8% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/newrelic/armnewrelicobservability v1.2.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
4 versions - Latest release: 2 months ago - 1,242 stars on GitHub
Top 4.8% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/newrelic/armnewrelicobservability v1.2.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
4 versions - Latest release: 2 months ago - 1,242 stars on GitHub
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/netapp/armnetapp/v6 v6.0.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
2 versions - Latest release: 2 months ago - 1,464 stars on GitHub
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/netapp/armnetapp/v6 v6.0.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
2 versions - Latest release: 2 months ago - 1,464 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/appcontainers/armappcontainers/v3 v3.0.0-beta.1
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
1 version - Latest release: 2 months ago - 1,522 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appcontainers/armappcontainers/v3 v3.0.0-beta.1
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
1 version - Latest release: 2 months ago - 1,523 stars on GitHub
Top 5.6% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/support/armsupport/v2 v2.0.0-beta.3
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
3 versions - Latest release: 2 months ago - 1,409 stars on GitHub
Top 5.6% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/support/armsupport/v2 v2.0.0-beta.3
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
3 versions - Latest release: 2 months ago - 1,409 stars on GitHub
Top 4.1% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/confluent/armconfluent v1.3.0
9 versions - Latest release: 2 months ago
Top 2.9% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/confluent/armconfluent v1.3.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
9 versions - Latest release: 2 months ago - 1 dependent package - 3 dependent repositories - 1,266 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/notificationhubs/armnotificationhubs/v2 v2.0.0-beta.1
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
1 version - Latest release: 2 months ago - 1,522 stars on GitHub
Top 9.0% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/notificationhubs/armnotificationhubs/v2 v2.0.0-beta.1
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
1 version - Latest release: 2 months ago - 1,523 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/quantum/armquantum v0.8.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
10 versions - Latest release: 2 months ago - 1,239 stars on GitHub
Top 9.2% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v6 v6.1.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
2 versions - Latest release: 2 months ago - 1,511 stars on GitHub
Top 9.2% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/datafactory/armdatafactory/v6 v6.1.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
2 versions - Latest release: 2 months ago - 1,511 stars on GitHub
Top 4.7% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/communication/armcommunication/v2 v2.2.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
9 versions - Latest release: 2 months ago - 1,239 stars on GitHub
Top 4.7% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/communication/armcommunication/v2 v2.2.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
9 versions - Latest release: 2 months ago - 1,239 stars on GitHub
Top 5.5% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/cosmos/armcosmos/v3 v3.0.0-beta.4
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
4 versions - Latest release: 2 months ago - 1,395 stars on GitHub
Top 5.5% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/cosmos/armcosmos/v3 v3.0.0-beta.4
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
4 versions - Latest release: 2 months ago - 1,395 stars on GitHub
Top 8.2% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/chaos/armchaos v1.1.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
11 versions - Latest release: 2 months ago - 1,239 stars on GitHub
Top 4.5% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/chaos/armchaos v1.1.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
11 versions - Latest release: 2 months ago - 1,266 stars on GitHub
Top 2.2% on proxy.golang.org
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/containerservice/armcontainerservice/v4 v4.8.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
22 versions - Latest release: 2 months ago - 53 dependent packages - 1 dependent repositories - 1,395 stars on GitHub
Top 5.5% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/containerservice/armcontainerservice/v4 v4.8.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
22 versions - Latest release: 2 months ago - 1,395 stars on GitHub
Top 5.5% on proxy.golang.org
github.com/azure/azure-sdk-for-go/sdk/resourcemanager/iotfirmwaredefense/armiotfirmwaredefense v1.0.0
This repository is for active development of the Azure SDK for Go. For consumers of the SDK we re...
3 versions - Latest release: 2 months ago - 1,395 stars on GitHub