aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/model/oapicodegen/models.go
blob: 34d88cd5fbe82b19255becc7af80ff613909ec71 (plain)
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
// Package oapicodegen provides primitives to interact with the openapi HTTP API.
//
// Code generated by github.com/deepmap/oapi-codegen version v1.16.3 DO NOT EDIT.
package oapicodegen

import (
	"encoding/json"
	"time"

	"github.com/oapi-codegen/runtime"
	openapi_types "github.com/oapi-codegen/runtime/types"
)

const (
	BasicAuthScopes = "basicAuth.Scopes"
)

// Defines values for ErrorResponseResponseCode.
const (
	BadRequest        ErrorResponseResponseCode = "bad_request"
	EvaluationError   ErrorResponseResponseCode = "evaluation_error"
	InternalError     ErrorResponseResponseCode = "internal_error"
	InvalidOperation  ErrorResponseResponseCode = "invalid_operation"
	InvalidParameter  ErrorResponseResponseCode = "invalid_parameter"
	OpaUndefinedError ErrorResponseResponseCode = "opa_undefined_error"
	ResourceConflict  ErrorResponseResponseCode = "resource_conflict"
	ResourceNotFound  ErrorResponseResponseCode = "resource_not_found"
	Unauthorized      ErrorResponseResponseCode = "unauthorized"
	UndefinedDocument ErrorResponseResponseCode = "undefined_document"
)

// ErrorResponse defines model for ErrorResponse.
type ErrorResponse struct {
	ErrorMessage *string                    `json:"errorMessage,omitempty"`
	PolicyName   *string                    `json:"policyName,omitempty"`
	ResponseCode *ErrorResponseResponseCode `json:"responseCode,omitempty"`
}

// ErrorResponseResponseCode defines model for ErrorResponse.ResponseCode.
type ErrorResponseResponseCode string

// HealthCheckReport defines model for HealthCheckReport.
type HealthCheckReport struct {
	Code    *int32  `json:"code,omitempty"`
	Healthy *bool   `json:"healthy,omitempty"`
	Message *string `json:"message,omitempty"`
	Name    *string `json:"name,omitempty"`
	Url     *string `json:"url,omitempty"`
}

// OPADataResponse defines model for OPADataResponse.
type OPADataResponse struct {
	Data *OPADataResponse_Data `json:"data,omitempty"`
}

// OPADataResponseData0 defines model for .
type OPADataResponseData0 = interface{}

// OPADataResponseData1 defines model for .
type OPADataResponseData1 map[string]interface{}

// OPADataResponse_Data defines model for OPADataResponse.Data.
type OPADataResponse_Data struct {
	union json.RawMessage
}

// OPADataUpdateRequest defines model for OPADataUpdateRequest.
type OPADataUpdateRequest struct {
	CurrentDate     *openapi_types.Date       `json:"currentDate,omitempty"`
	CurrentDateTime *time.Time                `json:"currentDateTime,omitempty"`
	CurrentTime     *string                   `json:"currentTime,omitempty"`
	Data            *[]map[string]interface{} `json:"data,omitempty"`
	OnapComponent   *string                   `json:"onapComponent,omitempty"`
	OnapInstance    *string                   `json:"onapInstance,omitempty"`
	OnapName        *string                   `json:"onapName,omitempty"`
	PolicyName      *string                   `json:"policyName,omitempty"`

	// TimeOffset Time offset in hours and minutes, e.g., '+02:00' or '-05:00'
	TimeOffset *string `json:"timeOffset,omitempty"`

	// TimeZone Timezone in IANA format (e.g., 'America/NewYork', 'Europe/Paris', 'UTC')
	TimeZone *string `json:"timeZone,omitempty"`
}

// OPADecisionRequest defines model for OPADecisionRequest.
type OPADecisionRequest struct {
	CurrentDate     *openapi_types.Date      `json:"currentDate,omitempty"`
	CurrentDateTime *time.Time               `json:"currentDateTime,omitempty"`
	CurrentTime     *string                  `json:"currentTime,omitempty"`
	Input           OPADecisionRequest_Input `json:"input"`
	OnapComponent   *string                  `json:"onapComponent,omitempty"`
	OnapInstance    *string                  `json:"onapInstance,omitempty"`
	OnapName        *string                  `json:"onapName,omitempty"`
	PolicyFilter    []string                 `json:"policyFilter"`
	PolicyName      string                   `json:"policyName"`

	// TimeOffset Time offset in hours and minutes, e.g., '+02:00' or '-05:00'
	TimeOffset *string `json:"timeOffset,omitempty"`

	// TimeZone Timezone in IANA format (e.g., 'America/NewYork', 'Europe/Paris', 'UTC')
	TimeZone *string `json:"timeZone,omitempty"`
}

// OPADecisionRequestInput0 defines model for .
type OPADecisionRequestInput0 = interface{}

// OPADecisionRequestInput1 defines model for .
type OPADecisionRequestInput1 map[string]interface{}

// OPADecisionRequest_Input defines model for OPADecisionRequest.Input.
type OPADecisionRequest_Input struct {
	union json.RawMessage
}

// OPADecisionResponse defines model for OPADecisionResponse.
type OPADecisionResponse struct {
	Output        map[string]interface{} `json:"output"`
	PolicyName    string                 `json:"policyName"`
	StatusMessage *string                `json:"statusMessage,omitempty"`
}

// StatisticsReport defines model for StatisticsReport.
type StatisticsReport struct {
	Code                  *int32 `json:"code,omitempty"`
	DecisionFailureCount  *int64 `json:"decisionFailureCount,omitempty"`
	DecisionSuccessCount  *int64 `json:"decisionSuccessCount,omitempty"`
	DeployFailureCount    *int64 `json:"deployFailureCount,omitempty"`
	DeploySuccessCount    *int64 `json:"deploySuccessCount,omitempty"`
	TotalErrorCount       *int64 `json:"totalErrorCount,omitempty"`
	TotalPoliciesCount    *int64 `json:"totalPoliciesCount,omitempty"`
	TotalPolicyTypesCount *int64 `json:"totalPolicyTypesCount,omitempty"`
	UndeployFailureCount  *int64 `json:"undeployFailureCount,omitempty"`
	UndeploySuccessCount  *int64 `json:"undeploySuccessCount,omitempty"`
}

// DataGetParams defines parameters for DataGet.
type DataGetParams struct {
	// XONAPRequestID RequestID for http transaction
	XONAPRequestID *openapi_types.UUID `json:"X-ONAP-RequestID,omitempty"`
}

// PatchdataParams defines parameters for Patchdata.
type PatchdataParams struct {
	// XONAPRequestID RequestID for http transaction
	XONAPRequestID *openapi_types.UUID `json:"X-ONAP-RequestID,omitempty"`
}

// DecisionParams defines parameters for Decision.
type DecisionParams struct {
	// XONAPRequestID RequestID for http transaction
	XONAPRequestID *openapi_types.UUID `json:"X-ONAP-RequestID,omitempty"`
}

// HealthcheckParams defines parameters for Healthcheck.
type HealthcheckParams struct {
	// XONAPRequestID RequestID for http transaction
	XONAPRequestID *openapi_types.UUID `json:"X-ONAP-RequestID,omitempty"`
}

// StatisticsParams defines parameters for Statistics.
type StatisticsParams struct {
	// XONAPRequestID RequestID for http transaction
	XONAPRequestID *openapi_types.UUID `json:"X-ONAP-RequestID,omitempty"`
}

// PatchdataJSONRequestBody defines body for Patchdata for application/json ContentType.
type PatchdataJSONRequestBody = OPADataUpdateRequest

// DecisionJSONRequestBody defines body for Decision for application/json ContentType.
type DecisionJSONRequestBody = OPADecisionRequest

// AsOPADataResponseData0 returns the union data inside the OPADataResponse_Data as a OPADataResponseData0
func (t OPADataResponse_Data) AsOPADataResponseData0() (OPADataResponseData0, error) {
	var body OPADataResponseData0
	err := json.Unmarshal(t.union, &body)
	return body, err
}

// FromOPADataResponseData0 overwrites any union data inside the OPADataResponse_Data as the provided OPADataResponseData0
func (t *OPADataResponse_Data) FromOPADataResponseData0(v OPADataResponseData0) error {
	b, err := json.Marshal(v)
	t.union = b
	return err
}

// MergeOPADataResponseData0 performs a merge with any union data inside the OPADataResponse_Data, using the provided OPADataResponseData0
func (t *OPADataResponse_Data) MergeOPADataResponseData0(v OPADataResponseData0) error {
	b, err := json.Marshal(v)
	if err != nil {
		return err
	}

	merged, err := runtime.JsonMerge(t.union, b)
	t.union = merged
	return err
}

// AsOPADataResponseData1 returns the union data inside the OPADataResponse_Data as a OPADataResponseData1
func (t OPADataResponse_Data) AsOPADataResponseData1() (OPADataResponseData1, error) {
	var body OPADataResponseData1
	err := json.Unmarshal(t.union, &body)
	return body, err
}

// FromOPADataResponseData1 overwrites any union data inside the OPADataResponse_Data as the provided OPADataResponseData1
func (t *OPADataResponse_Data) FromOPADataResponseData1(v OPADataResponseData1) error {
	b, err := json.Marshal(v)
	t.union = b
	return err
}

// MergeOPADataResponseData1 performs a merge with any union data inside the OPADataResponse_Data, using the provided OPADataResponseData1
func (t *OPADataResponse_Data) MergeOPADataResponseData1(v OPADataResponseData1) error {
	b, err := json.Marshal(v)
	if err != nil {
		return err
	}

	merged, err := runtime.JsonMerge(t.union, b)
	t.union = merged
	return err
}

func (t OPADataResponse_Data) MarshalJSON() ([]byte, error) {
	b, err := t.union.MarshalJSON()
	return b, err
}

func (t *OPADataResponse_Data) UnmarshalJSON(b []byte) error {
	err := t.union.UnmarshalJSON(b)
	return err
}

// AsOPADecisionRequestInput0 returns the union data inside the OPADecisionRequest_Input as a OPADecisionRequestInput0
func (t OPADecisionRequest_Input) AsOPADecisionRequestInput0() (OPADecisionRequestInput0, error) {
	var body OPADecisionRequestInput0
	err := json.Unmarshal(t.union, &body)
	return body, err
}

// FromOPADecisionRequestInput0 overwrites any union data inside the OPADecisionRequest_Input as the provided OPADecisionRequestInput0
func (t *OPADecisionRequest_Input) FromOPADecisionRequestInput0(v OPADecisionRequestInput0) error {
	b, err := json.Marshal(v)
	t.union = b
	return err
}

// MergeOPADecisionRequestInput0 performs a merge with any union data inside the OPADecisionRequest_Input, using the provided OPADecisionRequestInput0
func (t *OPADecisionRequest_Input) MergeOPADecisionRequestInput0(v OPADecisionRequestInput0) error {
	b, err := json.Marshal(v)
	if err != nil {
		return err
	}

	merged, err := runtime.JsonMerge(t.union, b)
	t.union = merged
	return err
}

// AsOPADecisionRequestInput1 returns the union data inside the OPADecisionRequest_Input as a OPADecisionRequestInput1
func (t OPADecisionRequest_Input) AsOPADecisionRequestInput1() (OPADecisionRequestInput1, error) {
	var body OPADecisionRequestInput1
	err := json.Unmarshal(t.union, &body)
	return body, err
}

// FromOPADecisionRequestInput1 overwrites any union data inside the OPADecisionRequest_Input as the provided OPADecisionRequestInput1
func (t *OPADecisionRequest_Input) FromOPADecisionRequestInput1(v OPADecisionRequestInput1) error {
	b, err := json.Marshal(v)
	t.union = b
	return err
}

// MergeOPADecisionRequestInput1 performs a merge with any union data inside the OPADecisionRequest_Input, using the provided OPADecisionRequestInput1
func (t *OPADecisionRequest_Input) MergeOPADecisionRequestInput1(v OPADecisionRequestInput1) error {
	b, err := json.Marshal(v)
	if err != nil {
		return err
	}

	merged, err := runtime.JsonMerge(t.union, b)
	t.union = merged
	return err
}

func (t OPADecisionRequest_Input) MarshalJSON() ([]byte, error) {
	b, err := t.union.MarshalJSON()
	return b, err
}

func (t *OPADecisionRequest_Input) UnmarshalJSON(b []byte) error {
	err := t.union.UnmarshalJSON(b)
	return err
}