github.com/minio/console@v1.4.1/models/multi_bucket_replication_edit.go (about)

     1  // Code generated by go-swagger; DO NOT EDIT.
     2  
     3  // This file is part of MinIO Console Server
     4  // Copyright (c) 2023 MinIO, Inc.
     5  //
     6  // This program is free software: you can redistribute it and/or modify
     7  // it under the terms of the GNU Affero General Public License as published by
     8  // the Free Software Foundation, either version 3 of the License, or
     9  // (at your option) any later version.
    10  //
    11  // This program is distributed in the hope that it will be useful,
    12  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    13  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    14  // GNU Affero General Public License for more details.
    15  //
    16  // You should have received a copy of the GNU Affero General Public License
    17  // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    18  //
    19  
    20  package models
    21  
    22  // This file was generated by the swagger tool.
    23  // Editing this file might prove futile when you re-run the swagger generate command
    24  
    25  import (
    26  	"context"
    27  
    28  	"github.com/go-openapi/strfmt"
    29  	"github.com/go-openapi/swag"
    30  )
    31  
    32  // MultiBucketReplicationEdit multi bucket replication edit
    33  //
    34  // swagger:model multiBucketReplicationEdit
    35  type MultiBucketReplicationEdit struct {
    36  
    37  	// arn
    38  	Arn string `json:"arn,omitempty"`
    39  
    40  	// prefix
    41  	Prefix string `json:"prefix,omitempty"`
    42  
    43  	// priority
    44  	Priority int32 `json:"priority,omitempty"`
    45  
    46  	// replicate delete markers
    47  	ReplicateDeleteMarkers bool `json:"replicateDeleteMarkers,omitempty"`
    48  
    49  	// replicate deletes
    50  	ReplicateDeletes bool `json:"replicateDeletes,omitempty"`
    51  
    52  	// replicate existing objects
    53  	ReplicateExistingObjects bool `json:"replicateExistingObjects,omitempty"`
    54  
    55  	// replicate metadata
    56  	ReplicateMetadata bool `json:"replicateMetadata,omitempty"`
    57  
    58  	// rule state
    59  	RuleState bool `json:"ruleState,omitempty"`
    60  
    61  	// storage class
    62  	StorageClass string `json:"storageClass,omitempty"`
    63  
    64  	// tags
    65  	Tags string `json:"tags,omitempty"`
    66  }
    67  
    68  // Validate validates this multi bucket replication edit
    69  func (m *MultiBucketReplicationEdit) Validate(formats strfmt.Registry) error {
    70  	return nil
    71  }
    72  
    73  // ContextValidate validates this multi bucket replication edit based on context it is used
    74  func (m *MultiBucketReplicationEdit) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
    75  	return nil
    76  }
    77  
    78  // MarshalBinary interface implementation
    79  func (m *MultiBucketReplicationEdit) MarshalBinary() ([]byte, error) {
    80  	if m == nil {
    81  		return nil, nil
    82  	}
    83  	return swag.WriteJSON(m)
    84  }
    85  
    86  // UnmarshalBinary interface implementation
    87  func (m *MultiBucketReplicationEdit) UnmarshalBinary(b []byte) error {
    88  	var res MultiBucketReplicationEdit
    89  	if err := swag.ReadJSON(b, &res); err != nil {
    90  		return err
    91  	}
    92  	*m = res
    93  	return nil
    94  }