Documentation ¶
Index ¶
- type CatalogEntry
- func (*CatalogEntry) Descriptor() ([]byte, []int)
- func (m *CatalogEntry) GetDescription() string
- func (m *CatalogEntry) GetId() string
- func (m *CatalogEntry) GetName() string
- func (*CatalogEntry) ProtoMessage()
- func (m *CatalogEntry) Reset()
- func (m *CatalogEntry) String() string
- func (m *CatalogEntry) XXX_DiscardUnknown()
- func (m *CatalogEntry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *CatalogEntry) XXX_Merge(src proto.Message)
- func (m *CatalogEntry) XXX_Size() int
- func (m *CatalogEntry) XXX_Unmarshal(b []byte) error
- type CatalogPlan
- func (*CatalogPlan) Descriptor() ([]byte, []int)
- func (m *CatalogPlan) GetDescription() string
- func (m *CatalogPlan) GetId() string
- func (m *CatalogPlan) GetName() string
- func (*CatalogPlan) ProtoMessage()
- func (m *CatalogPlan) Reset()
- func (m *CatalogPlan) String() string
- func (m *CatalogPlan) XXX_DiscardUnknown()
- func (m *CatalogPlan) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *CatalogPlan) XXX_Merge(src proto.Message)
- func (m *CatalogPlan) XXX_Size() int
- func (m *CatalogPlan) XXX_Unmarshal(b []byte) error
- type Deployment
- func (*Deployment) Descriptor() ([]byte, []int)
- func (m *Deployment) GetInstance() string
- func (*Deployment) ProtoMessage()
- func (m *Deployment) Reset()
- func (m *Deployment) String() string
- func (m *Deployment) XXX_DiscardUnknown()
- func (m *Deployment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *Deployment) XXX_Merge(src proto.Message)
- func (m *Deployment) XXX_Size() int
- func (m *Deployment) XXX_Unmarshal(b []byte) error
- type ServiceClass
- func (*ServiceClass) Descriptor() ([]byte, []int)
- func (m *ServiceClass) GetDeployment() *Deployment
- func (m *ServiceClass) GetEntry() *CatalogEntry
- func (*ServiceClass) ProtoMessage()
- func (m *ServiceClass) Reset()
- func (m *ServiceClass) String() string
- func (m *ServiceClass) XXX_DiscardUnknown()
- func (m *ServiceClass) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ServiceClass) XXX_Merge(src proto.Message)
- func (m *ServiceClass) XXX_Size() int
- func (m *ServiceClass) XXX_Unmarshal(b []byte) error
- type ServicePlan
- func (*ServicePlan) Descriptor() ([]byte, []int)
- func (m *ServicePlan) GetPlan() *CatalogPlan
- func (m *ServicePlan) GetServices() []string
- func (*ServicePlan) ProtoMessage()
- func (m *ServicePlan) Reset()
- func (m *ServicePlan) String() string
- func (m *ServicePlan) XXX_DiscardUnknown()
- func (m *ServicePlan) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *ServicePlan) XXX_Merge(src proto.Message)
- func (m *ServicePlan) XXX_Size() int
- func (m *ServicePlan) XXX_Unmarshal(b []byte) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CatalogEntry ¶
type CatalogEntry struct { // Required. Public service name. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Required. Public unique service guid. Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` // Required. Public short service description. Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
$hide_from_docs CatalogEntry defines listing information for this service within the exposed catalog. The message is a subset of OSBI service fields defined in https://github.com/openservicebrokerapi
func (*CatalogEntry) Descriptor ¶
func (*CatalogEntry) Descriptor() ([]byte, []int)
func (*CatalogEntry) GetDescription ¶
func (m *CatalogEntry) GetDescription() string
func (*CatalogEntry) GetId ¶
func (m *CatalogEntry) GetId() string
func (*CatalogEntry) GetName ¶
func (m *CatalogEntry) GetName() string
func (*CatalogEntry) ProtoMessage ¶
func (*CatalogEntry) ProtoMessage()
func (*CatalogEntry) Reset ¶
func (m *CatalogEntry) Reset()
func (*CatalogEntry) String ¶
func (m *CatalogEntry) String() string
func (*CatalogEntry) XXX_DiscardUnknown ¶
func (m *CatalogEntry) XXX_DiscardUnknown()
func (*CatalogEntry) XXX_Marshal ¶
func (m *CatalogEntry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*CatalogEntry) XXX_Merge ¶
func (dst *CatalogEntry) XXX_Merge(src proto.Message)
func (*CatalogEntry) XXX_Size ¶
func (m *CatalogEntry) XXX_Size() int
func (*CatalogEntry) XXX_Unmarshal ¶
func (m *CatalogEntry) XXX_Unmarshal(b []byte) error
type CatalogPlan ¶
type CatalogPlan struct { // Required. Public service plan name. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // Required. Public unique service plan guid. Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` // Required. Public short service plan description. Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
$hide_from_docs CatalogPlan defines listing information for this service plan within the exposed catalog. The message is a subset of OSBI plan fields defined in https://github.com/openservicebrokerapi
func (*CatalogPlan) Descriptor ¶
func (*CatalogPlan) Descriptor() ([]byte, []int)
func (*CatalogPlan) GetDescription ¶
func (m *CatalogPlan) GetDescription() string
func (*CatalogPlan) GetId ¶
func (m *CatalogPlan) GetId() string
func (*CatalogPlan) GetName ¶
func (m *CatalogPlan) GetName() string
func (*CatalogPlan) ProtoMessage ¶
func (*CatalogPlan) ProtoMessage()
func (*CatalogPlan) Reset ¶
func (m *CatalogPlan) Reset()
func (*CatalogPlan) String ¶
func (m *CatalogPlan) String() string
func (*CatalogPlan) XXX_DiscardUnknown ¶
func (m *CatalogPlan) XXX_DiscardUnknown()
func (*CatalogPlan) XXX_Marshal ¶
func (m *CatalogPlan) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*CatalogPlan) XXX_Merge ¶
func (dst *CatalogPlan) XXX_Merge(src proto.Message)
func (*CatalogPlan) XXX_Size ¶
func (m *CatalogPlan) XXX_Size() int
func (*CatalogPlan) XXX_Unmarshal ¶
func (m *CatalogPlan) XXX_Unmarshal(b []byte) error
type Deployment ¶
type Deployment struct { // For truely multi-tenant service, the deployed service instance name. Instance string `protobuf:"bytes,1,opt,name=instance,proto3" json:"instance,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
$hide_from_docs Deployment defines how the service instances are deployed.
func (*Deployment) Descriptor ¶
func (*Deployment) Descriptor() ([]byte, []int)
func (*Deployment) GetInstance ¶
func (m *Deployment) GetInstance() string
func (*Deployment) ProtoMessage ¶
func (*Deployment) ProtoMessage()
func (*Deployment) Reset ¶
func (m *Deployment) Reset()
func (*Deployment) String ¶
func (m *Deployment) String() string
func (*Deployment) XXX_DiscardUnknown ¶
func (m *Deployment) XXX_DiscardUnknown()
func (*Deployment) XXX_Marshal ¶
func (m *Deployment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*Deployment) XXX_Merge ¶
func (dst *Deployment) XXX_Merge(src proto.Message)
func (*Deployment) XXX_Size ¶
func (m *Deployment) XXX_Size() int
func (*Deployment) XXX_Unmarshal ¶
func (m *Deployment) XXX_Unmarshal(b []byte) error
type ServiceClass ¶
type ServiceClass struct { // Required. Istio deployment spec for the service class. Deployment *Deployment `protobuf:"bytes,1,opt,name=deployment,proto3" json:"deployment,omitempty"` // Required. Listing information for the public catalog. Entry *CatalogEntry `protobuf:"bytes,2,opt,name=entry,proto3" json:"entry,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
$hide_from_docs ServiceClass defines a service that are exposed to Istio service consumers. The service is linked into one or more ServicePlan.
func (*ServiceClass) Descriptor ¶
func (*ServiceClass) Descriptor() ([]byte, []int)
func (*ServiceClass) GetDeployment ¶
func (m *ServiceClass) GetDeployment() *Deployment
func (*ServiceClass) GetEntry ¶
func (m *ServiceClass) GetEntry() *CatalogEntry
func (*ServiceClass) ProtoMessage ¶
func (*ServiceClass) ProtoMessage()
func (*ServiceClass) Reset ¶
func (m *ServiceClass) Reset()
func (*ServiceClass) String ¶
func (m *ServiceClass) String() string
func (*ServiceClass) XXX_DiscardUnknown ¶
func (m *ServiceClass) XXX_DiscardUnknown()
func (*ServiceClass) XXX_Marshal ¶
func (m *ServiceClass) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*ServiceClass) XXX_Merge ¶
func (dst *ServiceClass) XXX_Merge(src proto.Message)
func (*ServiceClass) XXX_Size ¶
func (m *ServiceClass) XXX_Size() int
func (*ServiceClass) XXX_Unmarshal ¶
func (m *ServiceClass) XXX_Unmarshal(b []byte) error
type ServicePlan ¶
type ServicePlan struct { // Required. Public plan information. Plan *CatalogPlan `protobuf:"bytes,1,opt,name=plan,proto3" json:"plan,omitempty"` // Required. List of the Keys of serviceclass config instance // that are included in the plan. // ServiceClass is a type of CRD resource. Services []string `protobuf:"bytes,2,rep,name=services,proto3" json:"services,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
$hide_from_docs ServicePlan defines the type of services available to Istio service consumers. One or more services are included in a plan. The plan is flexible and subject to change along with business requirements.
func (*ServicePlan) Descriptor ¶
func (*ServicePlan) Descriptor() ([]byte, []int)
func (*ServicePlan) GetPlan ¶
func (m *ServicePlan) GetPlan() *CatalogPlan
func (*ServicePlan) GetServices ¶
func (m *ServicePlan) GetServices() []string
func (*ServicePlan) ProtoMessage ¶
func (*ServicePlan) ProtoMessage()
func (*ServicePlan) Reset ¶
func (m *ServicePlan) Reset()
func (*ServicePlan) String ¶
func (m *ServicePlan) String() string
func (*ServicePlan) XXX_DiscardUnknown ¶
func (m *ServicePlan) XXX_DiscardUnknown()
func (*ServicePlan) XXX_Marshal ¶
func (m *ServicePlan) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*ServicePlan) XXX_Merge ¶
func (dst *ServicePlan) XXX_Merge(src proto.Message)
func (*ServicePlan) XXX_Size ¶
func (m *ServicePlan) XXX_Size() int
func (*ServicePlan) XXX_Unmarshal ¶
func (m *ServicePlan) XXX_Unmarshal(b []byte) error