github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/loadbalancer/lb_http_request_body_condition.go (about)

     1  /*
     2   * NSX API
     3   *
     4   * VMware NSX REST API
     5   *
     6   * API version: 1.0.0
     7   * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
     8   */
     9  
    10  package loadbalancer
    11  
    12  // This condition is used to match the message body of an HTTP request. Typically, only HTTP POST, PATCH, or PUT requests have request body. The match_type field defines how body_value field is used to match the body of HTTP requests.
    13  type LbHttpRequestBodyCondition struct {
    14  
    15  	// A flag to indicate whether reverse the match result of this condition
    16  	Inverse bool `json:"inverse"`
    17  
    18  	// Type of load balancer rule condition
    19  	Type_ string `json:"type"`
    20  
    21  	// HTTP request body
    22  	BodyValue string `json:"body_value"`
    23  
    24  	// If true, case is significant when comparing HTTP body value.
    25  	CaseSensitive bool `json:"case_sensitive"`
    26  
    27  	// Match type of HTTP body
    28  	MatchType string `json:"match_type,omitempty"`
    29  }