1// +build go1.9
2
3// Copyright (c) Microsoft Corporation. All rights reserved.
4// Licensed under the MIT License. See License.txt in the project root for license information.
5
6// This code was auto-generated by:
7// github.com/Azure/azure-sdk-for-go/tools/profileBuilder
8
9package storagetables
10
11import original "github.com/Azure/azure-sdk-for-go/services/preview/storage/tables/2019-02-02-preview/storagetables"
12
13const (
14	DefaultVersion = original.DefaultVersion
15)
16
17type GeoReplicationStatusType = original.GeoReplicationStatusType
18
19const (
20	Bootstrap   GeoReplicationStatusType = original.Bootstrap
21	Live        GeoReplicationStatusType = original.Live
22	Unavailable GeoReplicationStatusType = original.Unavailable
23)
24
25type OdataMetadataFormat = original.OdataMetadataFormat
26
27const (
28	Applicationjsonodatafullmetadata    OdataMetadataFormat = original.Applicationjsonodatafullmetadata
29	Applicationjsonodataminimalmetadata OdataMetadataFormat = original.Applicationjsonodataminimalmetadata
30	Applicationjsonodatanometadata      OdataMetadataFormat = original.Applicationjsonodatanometadata
31)
32
33type ResponseFormat = original.ResponseFormat
34
35const (
36	ReturnContent   ResponseFormat = original.ReturnContent
37	ReturnNoContent ResponseFormat = original.ReturnNoContent
38)
39
40type AccessPolicy = original.AccessPolicy
41type BaseClient = original.BaseClient
42type CorsRule = original.CorsRule
43type GeoReplication = original.GeoReplication
44type ListSignedIdentifier = original.ListSignedIdentifier
45type Logging = original.Logging
46type Metrics = original.Metrics
47type RetentionPolicy = original.RetentionPolicy
48type ServiceClient = original.ServiceClient
49type SetSetObject = original.SetSetObject
50type SignedIdentifier = original.SignedIdentifier
51type TableClient = original.TableClient
52type TableEntityQueryResponse = original.TableEntityQueryResponse
53type TableProperties = original.TableProperties
54type TableQueryResponse = original.TableQueryResponse
55type TableResponse = original.TableResponse
56type TableResponseProperties = original.TableResponseProperties
57type TableServiceError = original.TableServiceError
58type TableServiceProperties = original.TableServiceProperties
59type TableServiceStats = original.TableServiceStats
60
61func New(URL string) BaseClient {
62	return original.New(URL)
63}
64func NewServiceClient(URL string) ServiceClient {
65	return original.NewServiceClient(URL)
66}
67func NewTableClient(URL string) TableClient {
68	return original.NewTableClient(URL)
69}
70func NewWithoutDefaults(URL string, version string) BaseClient {
71	return original.NewWithoutDefaults(URL, version)
72}
73func PossibleGeoReplicationStatusTypeValues() []GeoReplicationStatusType {
74	return original.PossibleGeoReplicationStatusTypeValues()
75}
76func PossibleOdataMetadataFormatValues() []OdataMetadataFormat {
77	return original.PossibleOdataMetadataFormatValues()
78}
79func PossibleResponseFormatValues() []ResponseFormat {
80	return original.PossibleResponseFormatValues()
81}
82func UserAgent() string {
83	return original.UserAgent() + " profiles/preview"
84}
85func Version() string {
86	return original.Version()
87}
88