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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
|
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
package testdata
import (
"context"
"net/http"
"github.com/Azure/azure-sdk-for-go/version"
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest/azure"
)
// content lifted from redis
// summary of changes
//
// const
// changed type DayOfWeek to Day
// removed Everyday
//
// func
// added param to DoNothing
// removed param from DoNothingWithParam
// changed return type on List
// added param to List and ListPreparer
// removed name param on Delete and DeletePreparer
//
// interface
// added params to methods on SomeInterface
//
// struct
// removed Tags field from CreateParameters
// changed field types SubnetID and RedisConfiguration in CreateProperties
// made BaseClient field in Client type explicit
// made NextLink in ListResult byval
//
const (
DefaultBaseURI = "https://management.azure.com"
)
type Day string
const (
Friday Day = "Friday"
Monday Day = "Monday"
Saturday Day = "Saturday"
Sunday Day = "Sunday"
Thursday Day = "Thursday"
Tuesday Day = "Tuesday"
Wednesday Day = "Wednesday"
Weekend Day = "Weekend"
)
type KeyType string
const (
Primary KeyType = "Primary"
Secondary KeyType = "Secondary"
)
type BaseClient struct {
autorest.Client
BaseURI string
SubscriptionID string
}
type Client struct {
BC BaseClient
}
func DoNothing(s string) {
}
func DoNothingWithParam() {
}
func New(subscriptionID string) BaseClient {
return NewWithBaseURI(DefaultBaseURI, subscriptionID)
}
func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient {
return BaseClient{
Client: autorest.NewClientWithUserAgent(UserAgent()),
BaseURI: baseURI,
SubscriptionID: subscriptionID,
}
}
func UserAgent() string {
return "Azure-SDK-For-Go/" + version.Number + " redis/2017-10-01"
}
type CreateParameters struct {
*CreateProperties `json:"properties,omitempty"`
Zones *[]string `json:"zones,omitempty"`
Location *string `json:"location,omitempty"`
}
func (cp CreateParameters) MarshalJSON() ([]byte, error) {
return nil, nil
}
func (cp *CreateParameters) UnmarshalJSON(body []byte) error {
return nil
}
type CreateProperties struct {
SubnetID *int `json:"subnetId,omitempty"`
StaticIP *string `json:"staticIP,omitempty"`
RedisConfiguration interface{} `json:"redisConfiguration"`
EnableNonSslPort *bool `json:"enableNonSslPort,omitempty"`
TenantSettings map[string]*string `json:"tenantSettings"`
ShardCount *int32 `json:"shardCount,omitempty"`
}
type DeleteFuture struct {
azure.Future
req *http.Request
}
func (future DeleteFuture) Result(client Client) (ar autorest.Response, err error) {
return
}
type ListResult struct {
autorest.Response `json:"-"`
Value *[]ResourceType `json:"value,omitempty"`
NextLink string `json:"nextLink,omitempty"`
}
func (lr ListResult) IsEmpty() bool {
return lr.Value == nil || len(*lr.Value) == 0
}
type ListResultPage struct {
fn func(ListResult) (ListResult, error)
lr ListResult
}
func (page *ListResultPage) Next() error {
return nil
}
func (page ListResultPage) NotDone() bool {
return !page.lr.IsEmpty()
}
func (page ListResultPage) Response() ListResult {
return page.lr
}
func (page ListResultPage) Values() []ResourceType {
return *page.lr.Value
}
type ResourceType struct {
autorest.Response `json:"-"`
Zones *[]string `json:"zones,omitempty"`
Tags map[string]*string `json:"tags"`
Location *string `json:"location,omitempty"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
}
func (client Client) Delete(ctx context.Context, resourceGroupName string) (result DeleteFuture, err error) {
return
}
func (client Client) DeletePreparer(ctx context.Context, resourceGroupName string) (*http.Request, error) {
const APIVersion = "2017-10-01"
return nil, nil
}
func (client Client) DeleteSender(req *http.Request) (future DeleteFuture, err error) {
return
}
func (client Client) DeleteResponder(resp *http.Response) (result autorest.Response, err error) {
return
}
func (client Client) List(ctx context.Context, s string) (result ListResult, err error) {
return
}
func (client Client) ListPreparer(ctx context.Context, s string) (*http.Request, error) {
const APIVersion = "2017-10-01"
return nil, nil
}
func (client Client) ListSender(req *http.Request) (*http.Response, error) {
return nil, nil
}
func (client Client) ListResponder(resp *http.Response) (result ListResult, err error) {
return
}
func (client Client) listNextResults(lastResults ListResult) (result ListResult, err error) {
return
}
type SomeInterface interface {
One(string)
Two(bool, int)
}
type AnotherInterface interface {
One()
}
|