packer-cn/vendor/github.com/oracle/oci-go-sdk/loadbalancer/backend_set.go

42 lines
1.4 KiB
Go

// Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
// Code generated. DO NOT EDIT.
// Load Balancing Service API
//
// API for the Load Balancing Service
//
package loadbalancer
import (
"github.com/oracle/oci-go-sdk/common"
)
// BackendSet The configuration of a load balancer backend set.
// For more information on backend set configuration, see
// Managing Backend Sets (https://docs.us-phoenix-1.oraclecloud.com/Content/Balance/tasks/managingbackendsets.htm).
type BackendSet struct {
Backends []Backend `mandatory:"true" json:"backends"`
HealthChecker *HealthChecker `mandatory:"true" json:"healthChecker"`
// A friendly name for the backend set. It must be unique and it cannot be changed.
// Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot
// contain spaces. Avoid entering confidential information.
// Example: `My_backend_set`
Name *string `mandatory:"true" json:"name"`
// The load balancer policy for the backend set. To get a list of available policies, use the
// ListPolicies operation.
// Example: `LEAST_CONNECTIONS`
Policy *string `mandatory:"true" json:"policy"`
SessionPersistenceConfiguration *SessionPersistenceConfigurationDetails `mandatory:"false" json:"sessionPersistenceConfiguration"`
SslConfiguration *SslConfiguration `mandatory:"false" json:"sslConfiguration"`
}
func (m BackendSet) String() string {
return common.PointerString(m)
}