1package azblob
2
3// Code generated by Microsoft (R) AutoRest Code Generator.
4// Changes may cause incorrect behavior and will be lost if the code is regenerated.
5
6import (
7	"github.com/Azure/azure-pipeline-go/pipeline"
8	"net/url"
9)
10
11const (
12	// ServiceVersion specifies the version of the operations used in this package.
13	ServiceVersion = "2018-11-09"
14)
15
16// managementClient is the base client for Azblob.
17type managementClient struct {
18	url url.URL
19	p   pipeline.Pipeline
20}
21
22// newManagementClient creates an instance of the managementClient client.
23func newManagementClient(url url.URL, p pipeline.Pipeline) managementClient {
24	return managementClient{
25		url: url,
26		p:   p,
27	}
28}
29
30// URL returns a copy of the URL for this client.
31func (mc managementClient) URL() url.URL {
32	return mc.url
33}
34
35// Pipeline returns the pipeline for this client.
36func (mc managementClient) Pipeline() pipeline.Pipeline {
37	return mc.p
38}
39