aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/Azure/azure-storage-blob-go/2018-03-28/azblob/zz_generated_client.go
blob: b42a79b1571c1e11d8dc63b141a0f430cce38cad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package azblob

// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.

import (
    "github.com/Azure/azure-pipeline-go/pipeline"
    "net/url"
)

const (
    // ServiceVersion specifies the version of the operations used in this package.
    ServiceVersion = "2018-03-28"
)

// managementClient is the base client for Azblob.
type managementClient struct {
    url url.URL
    p   pipeline.Pipeline
}

// newManagementClient creates an instance of the managementClient client.
func newManagementClient(url url.URL, p pipeline.Pipeline) managementClient {
    return managementClient{
        url: url,
        p:   p,
    }
}

// URL returns a copy of the URL for this client.
func (mc managementClient) URL() url.URL {
    return mc.url
}

// Pipeline returns the pipeline for this client.
func (mc managementClient) Pipeline() pipeline.Pipeline {
    return mc.p
}