forked from Azure/azure-sdk-for-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodels.go
494 lines (464 loc) · 15.8 KB
/
models.go
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
package trafficmanager
// Copyright (c) Microsoft and contributors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
import (
"encoding/json"
"github.com/Azure/go-autorest/autorest"
)
// The package's fully qualified name.
const fqdn = "github.com/Azure/azure-sdk-for-go/services/trafficmanager/mgmt/2017-03-01/trafficmanager"
// CheckTrafficManagerRelativeDNSNameAvailabilityParameters parameters supplied to check Traffic Manager
// name operation.
type CheckTrafficManagerRelativeDNSNameAvailabilityParameters struct {
// Name - Gets or sets the name of the resource.
Name *string `json:"name,omitempty"`
// Type - Gets or sets the type of the resource.
Type *string `json:"type,omitempty"`
}
// CloudError ...
type CloudError struct {
Error *CloudErrorBody `json:"error,omitempty"`
}
// CloudErrorBody ...
type CloudErrorBody struct {
Code *string `json:"code,omitempty"`
Message *string `json:"message,omitempty"`
Target *string `json:"target,omitempty"`
Details *[]CloudErrorBody `json:"details,omitempty"`
}
// DeleteOperationResult the result of the request or operation.
type DeleteOperationResult struct {
autorest.Response `json:"-"`
// OperationResult - The result of the operation or request.
OperationResult *bool `json:"boolean,omitempty"`
}
// DNSConfig class containing DNS settings in a Traffic Manager profile.
type DNSConfig struct {
// RelativeName - Gets or sets the relative DNS name provided by this Traffic Manager profile. This value is combined with the DNS domain name used by Azure Traffic Manager to form the fully-qualified domain name (FQDN) of the profile.
RelativeName *string `json:"relativeName,omitempty"`
// Fqdn - Gets or sets the fully-qualified domain name (FQDN) of the Traffic Manager profile. This is formed from the concatenation of the RelativeName with the DNS domain used by Azure Traffic Manager.
Fqdn *string `json:"fqdn,omitempty"`
// TTL - Gets or sets the DNS Time-To-Live (TTL), in seconds. This informs the local DNS resolvers and DNS clients how long to cache DNS responses provided by this Traffic Manager profile.
TTL *int64 `json:"ttl,omitempty"`
}
// Endpoint class representing a Traffic Manager endpoint.
type Endpoint struct {
autorest.Response `json:"-"`
// ID - Gets or sets the ID of the Traffic Manager endpoint.
ID *string `json:"id,omitempty"`
// Name - Gets or sets the name of the Traffic Manager endpoint.
Name *string `json:"name,omitempty"`
// Type - Gets or sets the endpoint type of the Traffic Manager endpoint.
Type *string `json:"type,omitempty"`
*EndpointProperties `json:"properties,omitempty"`
}
// MarshalJSON is the custom marshaler for Endpoint.
func (e Endpoint) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if e.ID != nil {
objectMap["id"] = e.ID
}
if e.Name != nil {
objectMap["name"] = e.Name
}
if e.Type != nil {
objectMap["type"] = e.Type
}
if e.EndpointProperties != nil {
objectMap["properties"] = e.EndpointProperties
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for Endpoint struct.
func (e *Endpoint) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
e.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
e.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
e.Type = &typeVar
}
case "properties":
if v != nil {
var endpointProperties EndpointProperties
err = json.Unmarshal(*v, &endpointProperties)
if err != nil {
return err
}
e.EndpointProperties = &endpointProperties
}
}
}
return nil
}
// EndpointProperties class representing a Traffic Manager endpoint properties.
type EndpointProperties struct {
// TargetResourceID - Gets or sets the Azure Resource URI of the of the endpoint. Not applicable to endpoints of type 'ExternalEndpoints'.
TargetResourceID *string `json:"targetResourceId,omitempty"`
// Target - Gets or sets the fully-qualified DNS name of the endpoint. Traffic Manager returns this value in DNS responses to direct traffic to this endpoint.
Target *string `json:"target,omitempty"`
// EndpointStatus - Gets or sets the status of the endpoint.. If the endpoint is Enabled, it is probed for endpoint health and is included in the traffic routing method. Possible values are 'Enabled' and 'Disabled'.
EndpointStatus *string `json:"endpointStatus,omitempty"`
// Weight - Gets or sets the weight of this endpoint when using the 'Weighted' traffic routing method. Possible values are from 1 to 1000.
Weight *int64 `json:"weight,omitempty"`
// Priority - Gets or sets the priority of this endpoint when using the ‘Priority’ traffic routing method. Possible values are from 1 to 1000, lower values represent higher priority. This is an optional parameter. If specified, it must be specified on all endpoints, and no two endpoints can share the same priority value.
Priority *int64 `json:"priority,omitempty"`
// EndpointLocation - Specifies the location of the external or nested endpoints when using the ‘Performance’ traffic routing method.
EndpointLocation *string `json:"endpointLocation,omitempty"`
// EndpointMonitorStatus - Gets or sets the monitoring status of the endpoint.
EndpointMonitorStatus *string `json:"endpointMonitorStatus,omitempty"`
// MinChildEndpoints - Gets or sets the minimum number of endpoints that must be available in the child profile in order for the parent profile to be considered available. Only applicable to endpoint of type 'NestedEndpoints'.
MinChildEndpoints *int64 `json:"minChildEndpoints,omitempty"`
// GeoMapping - Gets or sets the list of countries/regions mapped to this endpoint when using the ‘Geographic’ traffic routing method. Please consult Traffic Manager Geographic documentation for a full list of accepted values.
GeoMapping *[]string `json:"geoMapping,omitempty"`
}
// GeographicHierarchy class representing the Geographic hierarchy used with the Geographic traffic routing
// method.
type GeographicHierarchy struct {
autorest.Response `json:"-"`
*GeographicHierarchyProperties `json:"properties,omitempty"`
// ID - Resource Id
ID *string `json:"id,omitempty"`
// Name - Resource name
Name *string `json:"name,omitempty"`
// Type - Resource type
Type *string `json:"type,omitempty"`
// Location - Resource location
Location *string `json:"location,omitempty"`
// Tags - Resource tags
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for GeographicHierarchy.
func (gh GeographicHierarchy) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if gh.GeographicHierarchyProperties != nil {
objectMap["properties"] = gh.GeographicHierarchyProperties
}
if gh.ID != nil {
objectMap["id"] = gh.ID
}
if gh.Name != nil {
objectMap["name"] = gh.Name
}
if gh.Type != nil {
objectMap["type"] = gh.Type
}
if gh.Location != nil {
objectMap["location"] = gh.Location
}
if gh.Tags != nil {
objectMap["tags"] = gh.Tags
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for GeographicHierarchy struct.
func (gh *GeographicHierarchy) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
case "properties":
if v != nil {
var geographicHierarchyProperties GeographicHierarchyProperties
err = json.Unmarshal(*v, &geographicHierarchyProperties)
if err != nil {
return err
}
gh.GeographicHierarchyProperties = &geographicHierarchyProperties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
gh.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
gh.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
gh.Type = &typeVar
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
gh.Location = &location
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
gh.Tags = tags
}
}
}
return nil
}
// GeographicHierarchyProperties class representing the properties of the Geographic hierarchy used with
// the Geographic traffic routing method.
type GeographicHierarchyProperties struct {
// GeographicHierarchy - The region at the root of the hierarchy from all the regions in the hierarchy can be retrieved.
GeographicHierarchy *Region `json:"geographicHierarchy,omitempty"`
}
// MonitorConfig class containing endpoint monitoring settings in a Traffic Manager profile.
type MonitorConfig struct {
// ProfileMonitorStatus - Gets or sets the profile-level monitoring status of the Traffic Manager profile.
ProfileMonitorStatus *string `json:"profileMonitorStatus,omitempty"`
// Protocol - Gets or sets the protocol (HTTP or HTTPS) used to probe for endpoint health.
Protocol *string `json:"protocol,omitempty"`
// Port - Gets or sets the TCP port used to probe for endpoint health.
Port *int64 `json:"port,omitempty"`
// Path - Gets or sets the path relative to the endpoint domain name used to probe for endpoint health.
Path *string `json:"path,omitempty"`
}
// NameAvailability class representing a Traffic Manager Name Availability response.
type NameAvailability struct {
autorest.Response `json:"-"`
// Name - The relative name.
Name *string `json:"name,omitempty"`
// Type - Traffic Manager profile resource type.
Type *string `json:"type,omitempty"`
// NameAvailable - Describes whether the relative name is available or not.
NameAvailable *bool `json:"nameAvailable,omitempty"`
// Reason - The reason why the name is not available, when applicable.
Reason *string `json:"reason,omitempty"`
// Message - Descriptive message that explains why the name is not available, when applicable.
Message *string `json:"message,omitempty"`
}
// Profile class representing a Traffic Manager profile.
type Profile struct {
autorest.Response `json:"-"`
*ProfileProperties `json:"properties,omitempty"`
// ID - Resource Id
ID *string `json:"id,omitempty"`
// Name - Resource name
Name *string `json:"name,omitempty"`
// Type - Resource type
Type *string `json:"type,omitempty"`
// Location - Resource location
Location *string `json:"location,omitempty"`
// Tags - Resource tags
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for Profile.
func (p Profile) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if p.ProfileProperties != nil {
objectMap["properties"] = p.ProfileProperties
}
if p.ID != nil {
objectMap["id"] = p.ID
}
if p.Name != nil {
objectMap["name"] = p.Name
}
if p.Type != nil {
objectMap["type"] = p.Type
}
if p.Location != nil {
objectMap["location"] = p.Location
}
if p.Tags != nil {
objectMap["tags"] = p.Tags
}
return json.Marshal(objectMap)
}
// UnmarshalJSON is the custom unmarshaler for Profile struct.
func (p *Profile) UnmarshalJSON(body []byte) error {
var m map[string]*json.RawMessage
err := json.Unmarshal(body, &m)
if err != nil {
return err
}
for k, v := range m {
switch k {
case "properties":
if v != nil {
var profileProperties ProfileProperties
err = json.Unmarshal(*v, &profileProperties)
if err != nil {
return err
}
p.ProfileProperties = &profileProperties
}
case "id":
if v != nil {
var ID string
err = json.Unmarshal(*v, &ID)
if err != nil {
return err
}
p.ID = &ID
}
case "name":
if v != nil {
var name string
err = json.Unmarshal(*v, &name)
if err != nil {
return err
}
p.Name = &name
}
case "type":
if v != nil {
var typeVar string
err = json.Unmarshal(*v, &typeVar)
if err != nil {
return err
}
p.Type = &typeVar
}
case "location":
if v != nil {
var location string
err = json.Unmarshal(*v, &location)
if err != nil {
return err
}
p.Location = &location
}
case "tags":
if v != nil {
var tags map[string]*string
err = json.Unmarshal(*v, &tags)
if err != nil {
return err
}
p.Tags = tags
}
}
}
return nil
}
// ProfileListResult the list Traffic Manager profiles operation response.
type ProfileListResult struct {
autorest.Response `json:"-"`
// Value - Gets the list of Traffic manager profiles.
Value *[]Profile `json:"value,omitempty"`
}
// ProfileProperties class representing the Traffic Manager profile properties.
type ProfileProperties struct {
// ProfileStatus - Gets or sets the status of the Traffic Manager profile. Possible values are 'Enabled' and 'Disabled'.
ProfileStatus *string `json:"profileStatus,omitempty"`
// TrafficRoutingMethod - Gets or sets the traffic routing method of the Traffic Manager profile. Possible values are 'Performance', 'Weighted', 'Priority' or 'Geographic'.
TrafficRoutingMethod *string `json:"trafficRoutingMethod,omitempty"`
// DNSConfig - Gets or sets the DNS settings of the Traffic Manager profile.
DNSConfig *DNSConfig `json:"dnsConfig,omitempty"`
// MonitorConfig - Gets or sets the endpoint monitoring settings of the Traffic Manager profile.
MonitorConfig *MonitorConfig `json:"monitorConfig,omitempty"`
// Endpoints - Gets or sets the list of endpoints in the Traffic Manager profile.
Endpoints *[]Endpoint `json:"endpoints,omitempty"`
}
// Region class representing a region in the Geographic hierarchy used with the Geographic traffic routing
// method.
type Region struct {
// Code - The code of the region
Code *string `json:"code,omitempty"`
// Name - The name of the region
Name *string `json:"name,omitempty"`
// Regions - The list of Regions grouped under this Region in the Geographic Hierarchy.
Regions *[]Region `json:"regions,omitempty"`
}
// Resource the Resource model definition.
type Resource struct {
// ID - Resource Id
ID *string `json:"id,omitempty"`
// Name - Resource name
Name *string `json:"name,omitempty"`
// Type - Resource type
Type *string `json:"type,omitempty"`
// Location - Resource location
Location *string `json:"location,omitempty"`
// Tags - Resource tags
Tags map[string]*string `json:"tags"`
}
// MarshalJSON is the custom marshaler for Resource.
func (r Resource) MarshalJSON() ([]byte, error) {
objectMap := make(map[string]interface{})
if r.ID != nil {
objectMap["id"] = r.ID
}
if r.Name != nil {
objectMap["name"] = r.Name
}
if r.Type != nil {
objectMap["type"] = r.Type
}
if r.Location != nil {
objectMap["location"] = r.Location
}
if r.Tags != nil {
objectMap["tags"] = r.Tags
}
return json.Marshal(objectMap)
}
// SubResource ...
type SubResource struct {
// ID - Resource Id
ID *string `json:"id,omitempty"`
}