github.com/minio/console@v1.4.1/api/operations/policy/list_users_for_policy_responses.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 policy
    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  	"net/http"
    27  
    28  	"github.com/go-openapi/runtime"
    29  
    30  	"github.com/minio/console/models"
    31  )
    32  
    33  // ListUsersForPolicyOKCode is the HTTP code returned for type ListUsersForPolicyOK
    34  const ListUsersForPolicyOKCode int = 200
    35  
    36  /*
    37  ListUsersForPolicyOK A successful response.
    38  
    39  swagger:response listUsersForPolicyOK
    40  */
    41  type ListUsersForPolicyOK struct {
    42  
    43  	/*
    44  	  In: Body
    45  	*/
    46  	Payload []string `json:"body,omitempty"`
    47  }
    48  
    49  // NewListUsersForPolicyOK creates ListUsersForPolicyOK with default headers values
    50  func NewListUsersForPolicyOK() *ListUsersForPolicyOK {
    51  
    52  	return &ListUsersForPolicyOK{}
    53  }
    54  
    55  // WithPayload adds the payload to the list users for policy o k response
    56  func (o *ListUsersForPolicyOK) WithPayload(payload []string) *ListUsersForPolicyOK {
    57  	o.Payload = payload
    58  	return o
    59  }
    60  
    61  // SetPayload sets the payload to the list users for policy o k response
    62  func (o *ListUsersForPolicyOK) SetPayload(payload []string) {
    63  	o.Payload = payload
    64  }
    65  
    66  // WriteResponse to the client
    67  func (o *ListUsersForPolicyOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
    68  
    69  	rw.WriteHeader(200)
    70  	payload := o.Payload
    71  	if payload == nil {
    72  		// return empty array
    73  		payload = make([]string, 0, 50)
    74  	}
    75  
    76  	if err := producer.Produce(rw, payload); err != nil {
    77  		panic(err) // let the recovery middleware deal with this
    78  	}
    79  }
    80  
    81  /*
    82  ListUsersForPolicyDefault Generic error response.
    83  
    84  swagger:response listUsersForPolicyDefault
    85  */
    86  type ListUsersForPolicyDefault struct {
    87  	_statusCode int
    88  
    89  	/*
    90  	  In: Body
    91  	*/
    92  	Payload *models.APIError `json:"body,omitempty"`
    93  }
    94  
    95  // NewListUsersForPolicyDefault creates ListUsersForPolicyDefault with default headers values
    96  func NewListUsersForPolicyDefault(code int) *ListUsersForPolicyDefault {
    97  	if code <= 0 {
    98  		code = 500
    99  	}
   100  
   101  	return &ListUsersForPolicyDefault{
   102  		_statusCode: code,
   103  	}
   104  }
   105  
   106  // WithStatusCode adds the status to the list users for policy default response
   107  func (o *ListUsersForPolicyDefault) WithStatusCode(code int) *ListUsersForPolicyDefault {
   108  	o._statusCode = code
   109  	return o
   110  }
   111  
   112  // SetStatusCode sets the status to the list users for policy default response
   113  func (o *ListUsersForPolicyDefault) SetStatusCode(code int) {
   114  	o._statusCode = code
   115  }
   116  
   117  // WithPayload adds the payload to the list users for policy default response
   118  func (o *ListUsersForPolicyDefault) WithPayload(payload *models.APIError) *ListUsersForPolicyDefault {
   119  	o.Payload = payload
   120  	return o
   121  }
   122  
   123  // SetPayload sets the payload to the list users for policy default response
   124  func (o *ListUsersForPolicyDefault) SetPayload(payload *models.APIError) {
   125  	o.Payload = payload
   126  }
   127  
   128  // WriteResponse to the client
   129  func (o *ListUsersForPolicyDefault) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
   130  
   131  	rw.WriteHeader(o._statusCode)
   132  	if o.Payload != nil {
   133  		payload := o.Payload
   134  		if err := producer.Produce(rw, payload); err != nil {
   135  			panic(err) // let the recovery middleware deal with this
   136  		}
   137  	}
   138  }