We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Commit : https://github.com/Azure/azure-storage-blob-go/commit/b336354e288251d71090c7dcf85491a585b46ed changed some function calls
https://github.com/Azure/azure-storage-blob-go/commit/b336354e288251d71090c7dcf85491a585b46ed
// GetProperties returns the blob's properties. func (b BlobURL) GetProperties(ctx context.Context, ac BlobAccessConditions, cpk ClientProvidedKeyOptions) (*BlobGetPropertiesResponse, error)
^ is the new function defination
res, err := blobURL.GetProperties(ctx, azblob.BlobAccessConditions{}) inside storage/storage.go number of parameters changed
res, err := blobURL.GetProperties(ctx, azblob.BlobAccessConditions{})
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Commit :
https://github.com/Azure/azure-storage-blob-go/commit/b336354e288251d71090c7dcf85491a585b46ed
changed some function callsExpected Behavior
// GetProperties returns the blob's properties.
func (b BlobURL) GetProperties(ctx context.Context, ac BlobAccessConditions, cpk ClientProvidedKeyOptions) (*BlobGetPropertiesResponse, error)
^ is the new function defination
Actual Behavior
res, err := blobURL.GetProperties(ctx, azblob.BlobAccessConditions{})
inside storage/storage.go number of parameters changedEnvironment
The text was updated successfully, but these errors were encountered: