mirror of
https://github.com/openziti/ziti.git
synced 2026-09-21 01:53:22 +00:00
47499bc4f1
- allow timeouts for MFA posture checks - allow wake/unlocked MFA options - allow legacy toggle for SDKs that don't supply endpoint state - supply timeouts on posture checks - posture data now caches session state
455 lines
10 KiB
Go
455 lines
10 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
//
|
|
// Copyright NetFoundry, Inc.
|
|
//
|
|
// 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
|
|
//
|
|
// https://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.
|
|
//
|
|
// __ __ _
|
|
// \ \ / / (_)
|
|
// \ \ /\ / /_ _ _ __ _ __ _ _ __ __ _
|
|
// \ \/ \/ / _` | '__| '_ \| | '_ \ / _` |
|
|
// \ /\ / (_| | | | | | | | | | | (_| | : This file is generated, do not edit it.
|
|
// \/ \/ \__,_|_| |_| |_|_|_| |_|\__, |
|
|
// __/ |
|
|
// |___/
|
|
|
|
package rest_model
|
|
|
|
// This file was generated by the swagger tool.
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
"strconv"
|
|
|
|
"github.com/go-openapi/errors"
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
"github.com/go-openapi/validate"
|
|
)
|
|
|
|
// PostureCheckProcessMultiCreate posture check process multi create
|
|
//
|
|
// swagger:model postureCheckProcessMultiCreate
|
|
type PostureCheckProcessMultiCreate struct {
|
|
nameField *string
|
|
|
|
roleAttributesField *Attributes
|
|
|
|
tagsField *Tags
|
|
|
|
// processes
|
|
// Required: true
|
|
// Min Items: 1
|
|
Processes []*ProcessMulti `json:"processes"`
|
|
|
|
// semantic
|
|
// Required: true
|
|
Semantic *Semantic `json:"semantic"`
|
|
}
|
|
|
|
// Name gets the name of this subtype
|
|
func (m *PostureCheckProcessMultiCreate) Name() *string {
|
|
return m.nameField
|
|
}
|
|
|
|
// SetName sets the name of this subtype
|
|
func (m *PostureCheckProcessMultiCreate) SetName(val *string) {
|
|
m.nameField = val
|
|
}
|
|
|
|
// RoleAttributes gets the role attributes of this subtype
|
|
func (m *PostureCheckProcessMultiCreate) RoleAttributes() *Attributes {
|
|
return m.roleAttributesField
|
|
}
|
|
|
|
// SetRoleAttributes sets the role attributes of this subtype
|
|
func (m *PostureCheckProcessMultiCreate) SetRoleAttributes(val *Attributes) {
|
|
m.roleAttributesField = val
|
|
}
|
|
|
|
// Tags gets the tags of this subtype
|
|
func (m *PostureCheckProcessMultiCreate) Tags() *Tags {
|
|
return m.tagsField
|
|
}
|
|
|
|
// SetTags sets the tags of this subtype
|
|
func (m *PostureCheckProcessMultiCreate) SetTags(val *Tags) {
|
|
m.tagsField = val
|
|
}
|
|
|
|
// TypeID gets the type Id of this subtype
|
|
func (m *PostureCheckProcessMultiCreate) TypeID() PostureCheckType {
|
|
return "PROCESS_MULTI"
|
|
}
|
|
|
|
// SetTypeID sets the type Id of this subtype
|
|
func (m *PostureCheckProcessMultiCreate) SetTypeID(val PostureCheckType) {
|
|
}
|
|
|
|
// UnmarshalJSON unmarshals this object with a polymorphic type from a JSON structure
|
|
func (m *PostureCheckProcessMultiCreate) UnmarshalJSON(raw []byte) error {
|
|
var data struct {
|
|
|
|
// processes
|
|
// Required: true
|
|
// Min Items: 1
|
|
Processes []*ProcessMulti `json:"processes"`
|
|
|
|
// semantic
|
|
// Required: true
|
|
Semantic *Semantic `json:"semantic"`
|
|
}
|
|
buf := bytes.NewBuffer(raw)
|
|
dec := json.NewDecoder(buf)
|
|
dec.UseNumber()
|
|
|
|
if err := dec.Decode(&data); err != nil {
|
|
return err
|
|
}
|
|
|
|
var base struct {
|
|
/* Just the base type fields. Used for unmashalling polymorphic types.*/
|
|
|
|
Name *string `json:"name"`
|
|
|
|
RoleAttributes *Attributes `json:"roleAttributes,omitempty"`
|
|
|
|
Tags *Tags `json:"tags,omitempty"`
|
|
|
|
TypeID PostureCheckType `json:"typeId"`
|
|
}
|
|
buf = bytes.NewBuffer(raw)
|
|
dec = json.NewDecoder(buf)
|
|
dec.UseNumber()
|
|
|
|
if err := dec.Decode(&base); err != nil {
|
|
return err
|
|
}
|
|
|
|
var result PostureCheckProcessMultiCreate
|
|
|
|
result.nameField = base.Name
|
|
|
|
result.roleAttributesField = base.RoleAttributes
|
|
|
|
result.tagsField = base.Tags
|
|
|
|
if base.TypeID != result.TypeID() {
|
|
/* Not the type we're looking for. */
|
|
return errors.New(422, "invalid typeId value: %q", base.TypeID)
|
|
}
|
|
|
|
result.Processes = data.Processes
|
|
result.Semantic = data.Semantic
|
|
|
|
*m = result
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalJSON marshals this object with a polymorphic type to a JSON structure
|
|
func (m PostureCheckProcessMultiCreate) MarshalJSON() ([]byte, error) {
|
|
var b1, b2, b3 []byte
|
|
var err error
|
|
b1, err = json.Marshal(struct {
|
|
|
|
// processes
|
|
// Required: true
|
|
// Min Items: 1
|
|
Processes []*ProcessMulti `json:"processes"`
|
|
|
|
// semantic
|
|
// Required: true
|
|
Semantic *Semantic `json:"semantic"`
|
|
}{
|
|
|
|
Processes: m.Processes,
|
|
|
|
Semantic: m.Semantic,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
b2, err = json.Marshal(struct {
|
|
Name *string `json:"name"`
|
|
|
|
RoleAttributes *Attributes `json:"roleAttributes,omitempty"`
|
|
|
|
Tags *Tags `json:"tags,omitempty"`
|
|
|
|
TypeID PostureCheckType `json:"typeId"`
|
|
}{
|
|
|
|
Name: m.Name(),
|
|
|
|
RoleAttributes: m.RoleAttributes(),
|
|
|
|
Tags: m.Tags(),
|
|
|
|
TypeID: m.TypeID(),
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return swag.ConcatJSON(b1, b2, b3), nil
|
|
}
|
|
|
|
// Validate validates this posture check process multi create
|
|
func (m *PostureCheckProcessMultiCreate) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateName(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateRoleAttributes(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateTags(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateProcesses(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.validateSemantic(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *PostureCheckProcessMultiCreate) validateName(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("name", "body", m.Name()); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *PostureCheckProcessMultiCreate) validateRoleAttributes(formats strfmt.Registry) error {
|
|
|
|
if swag.IsZero(m.RoleAttributes()) { // not required
|
|
return nil
|
|
}
|
|
|
|
if m.RoleAttributes() != nil {
|
|
if err := m.RoleAttributes().Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("roleAttributes")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *PostureCheckProcessMultiCreate) validateTags(formats strfmt.Registry) error {
|
|
|
|
if swag.IsZero(m.Tags()) { // not required
|
|
return nil
|
|
}
|
|
|
|
if m.Tags() != nil {
|
|
if err := m.Tags().Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("tags")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *PostureCheckProcessMultiCreate) validateProcesses(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("processes", "body", m.Processes); err != nil {
|
|
return err
|
|
}
|
|
|
|
iProcessesSize := int64(len(m.Processes))
|
|
|
|
if err := validate.MinItems("processes", "body", iProcessesSize, 1); err != nil {
|
|
return err
|
|
}
|
|
|
|
for i := 0; i < len(m.Processes); i++ {
|
|
if swag.IsZero(m.Processes[i]) { // not required
|
|
continue
|
|
}
|
|
|
|
if m.Processes[i] != nil {
|
|
if err := m.Processes[i].Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("processes" + "." + strconv.Itoa(i))
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *PostureCheckProcessMultiCreate) validateSemantic(formats strfmt.Registry) error {
|
|
|
|
if err := validate.Required("semantic", "body", m.Semantic); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := validate.Required("semantic", "body", m.Semantic); err != nil {
|
|
return err
|
|
}
|
|
|
|
if m.Semantic != nil {
|
|
if err := m.Semantic.Validate(formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("semantic")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validate this posture check process multi create based on the context it is used
|
|
func (m *PostureCheckProcessMultiCreate) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.contextValidateRoleAttributes(ctx, formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.contextValidateTags(ctx, formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.contextValidateProcesses(ctx, formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if err := m.contextValidateSemantic(ctx, formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *PostureCheckProcessMultiCreate) contextValidateRoleAttributes(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
if m.RoleAttributes() != nil {
|
|
if err := m.RoleAttributes().ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("roleAttributes")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *PostureCheckProcessMultiCreate) contextValidateTags(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
if m.Tags() != nil {
|
|
if err := m.Tags().ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("tags")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *PostureCheckProcessMultiCreate) contextValidateTypeID(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
if err := m.TypeID().ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("typeId")
|
|
}
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *PostureCheckProcessMultiCreate) contextValidateProcesses(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
for i := 0; i < len(m.Processes); i++ {
|
|
|
|
if m.Processes[i] != nil {
|
|
if err := m.Processes[i].ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("processes" + "." + strconv.Itoa(i))
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (m *PostureCheckProcessMultiCreate) contextValidateSemantic(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
if m.Semantic != nil {
|
|
if err := m.Semantic.ContextValidate(ctx, formats); err != nil {
|
|
if ve, ok := err.(*errors.Validation); ok {
|
|
return ve.ValidateName("semantic")
|
|
}
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *PostureCheckProcessMultiCreate) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *PostureCheckProcessMultiCreate) UnmarshalBinary(b []byte) error {
|
|
var res PostureCheckProcessMultiCreate
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|