forked from Azure/azure-sdk-for-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodels.go
184 lines (163 loc) · 6.91 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
package policy
// 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 (
"github.com/Azure/go-autorest/autorest"
"github.com/Azure/go-autorest/autorest/to"
"net/http"
)
// Mode enumerates the values for mode.
type Mode string
const (
// All specifies the all state for mode.
All Mode = "All"
// Indexed specifies the indexed state for mode.
Indexed Mode = "Indexed"
// NotSpecified specifies the not specified state for mode.
NotSpecified Mode = "NotSpecified"
)
// Type enumerates the values for type.
type Type string
const (
// TypeBuiltIn specifies the type built in state for type.
TypeBuiltIn Type = "BuiltIn"
// TypeCustom specifies the type custom state for type.
TypeCustom Type = "Custom"
// TypeNotSpecified specifies the type not specified state for type.
TypeNotSpecified Type = "NotSpecified"
)
// Assignment is the policy assignment.
type Assignment struct {
autorest.Response `json:"-"`
*AssignmentProperties `json:"properties,omitempty"`
ID *string `json:"id,omitempty"`
Type *string `json:"type,omitempty"`
Name *string `json:"name,omitempty"`
Sku *Sku `json:"sku,omitempty"`
}
// AssignmentListResult is list of policy assignments.
type AssignmentListResult struct {
autorest.Response `json:"-"`
Value *[]Assignment `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// AssignmentListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client AssignmentListResult) AssignmentListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// AssignmentProperties is the policy assignment properties.
type AssignmentProperties struct {
DisplayName *string `json:"displayName,omitempty"`
PolicyDefinitionID *string `json:"policyDefinitionId,omitempty"`
Scope *string `json:"scope,omitempty"`
NotScopes *[]string `json:"notScopes,omitempty"`
Parameters *map[string]interface{} `json:"parameters,omitempty"`
Description *string `json:"description,omitempty"`
Metadata *map[string]interface{} `json:"metadata,omitempty"`
}
// Definition is the policy definition.
type Definition struct {
autorest.Response `json:"-"`
*DefinitionProperties `json:"properties,omitempty"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
}
// DefinitionListResult is list of policy definitions.
type DefinitionListResult struct {
autorest.Response `json:"-"`
Value *[]Definition `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// DefinitionListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client DefinitionListResult) DefinitionListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// DefinitionProperties is the policy definition properties.
type DefinitionProperties struct {
PolicyType Type `json:"policyType,omitempty"`
Mode Mode `json:"mode,omitempty"`
DisplayName *string `json:"displayName,omitempty"`
Description *string `json:"description,omitempty"`
PolicyRule *map[string]interface{} `json:"policyRule,omitempty"`
Metadata *map[string]interface{} `json:"metadata,omitempty"`
Parameters *map[string]interface{} `json:"parameters,omitempty"`
}
// DefinitionReference is the policy definition reference.
type DefinitionReference struct {
PolicyDefinitionID *string `json:"policyDefinitionId,omitempty"`
Parameters *map[string]interface{} `json:"parameters,omitempty"`
}
// ErrorResponse is error reponse indicates ARM is not able to process the incoming request. The reason is provided in
// the error message.
type ErrorResponse struct {
HTTPStatus *string `json:"httpStatus,omitempty"`
ErrorCode *string `json:"errorCode,omitempty"`
ErrorMessage *string `json:"errorMessage,omitempty"`
}
// SetDefinition is the policy set definition.
type SetDefinition struct {
autorest.Response `json:"-"`
*SetDefinitionProperties `json:"properties,omitempty"`
ID *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Type *string `json:"type,omitempty"`
}
// SetDefinitionListResult is list of policy set definitions.
type SetDefinitionListResult struct {
autorest.Response `json:"-"`
Value *[]SetDefinition `json:"value,omitempty"`
NextLink *string `json:"nextLink,omitempty"`
}
// SetDefinitionListResultPreparer prepares a request to retrieve the next set of results. It returns
// nil if no more results exist.
func (client SetDefinitionListResult) SetDefinitionListResultPreparer() (*http.Request, error) {
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
return nil, nil
}
return autorest.Prepare(&http.Request{},
autorest.AsJSON(),
autorest.AsGet(),
autorest.WithBaseURL(to.String(client.NextLink)))
}
// SetDefinitionProperties is the policy set definition properties.
type SetDefinitionProperties struct {
PolicyType Type `json:"policyType,omitempty"`
DisplayName *string `json:"displayName,omitempty"`
Description *string `json:"description,omitempty"`
Metadata *map[string]interface{} `json:"metadata,omitempty"`
Parameters *map[string]interface{} `json:"parameters,omitempty"`
PolicyDefinitions *[]DefinitionReference `json:"policyDefinitions,omitempty"`
}
// Sku is the policy sku.
type Sku struct {
Name *string `json:"name,omitempty"`
Tier *string `json:"tier,omitempty"`
}