Documentation
¶
Index ¶
Constants ¶
View Source
const ( // AttachmentTypeService captures enum value "service" AttachmentTypeService string = "service" // AttachmentTypeContainer captures enum value "container" AttachmentTypeContainer string = "container" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Attachment ¶
type Attachment struct {
// name
// Required: true
Name *string `json:"name"`
// type
// Required: true
Type *string `json:"type"`
}
Attachment attachment swagger:model Attachment
func (*Attachment) MarshalBinary ¶
func (m *Attachment) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*Attachment) UnmarshalBinary ¶
func (m *Attachment) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type Breakpoint ¶
type Breakpoint struct {
// location
// Required: true
Location *string `json:"location"`
}
Breakpoint breakpoint swagger:model Breakpoint
func (*Breakpoint) MarshalBinary ¶
func (m *Breakpoint) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*Breakpoint) UnmarshalBinary ¶
func (m *Breakpoint) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type DebugConfig ¶
type DebugConfig struct {
// active
Active bool `json:"active,omitempty"`
// attachment
// Required: true
Attachment *Attachment `json:"attachment"`
// breakpoints
Breakpoints []*Breakpoint `json:"breakpoints"`
// debugger
Debugger string `json:"debugger,omitempty"`
// id
ID string `json:"id,omitempty"`
// image
// Required: true
Image *string `json:"image"`
// immediately
Immediately bool `json:"immediately,omitempty"`
}
DebugConfig debug config swagger:model DebugConfig
func (*DebugConfig) MarshalBinary ¶
func (m *DebugConfig) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*DebugConfig) UnmarshalBinary ¶
func (m *DebugConfig) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type DebugSession ¶
type DebugSession struct {
// debug config Id
// Required: true
DebugConfigID *string `json:"debugConfigId"`
// url
URL string `json:"url,omitempty"`
}
DebugSession debug session swagger:model DebugSession
func (*DebugSession) MarshalBinary ¶
func (m *DebugSession) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*DebugSession) UnmarshalBinary ¶
func (m *DebugSession) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
Click to show internal directories.
Click to hide internal directories.