Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Error ¶
type Error struct {
// Error message
// Example: Failed to validate credentials.
Message string `json:"message,omitempty"`
// status code
StatusCode int32 `json:"statusCode,omitempty"`
}
Error Error
Specification for a vRA API error.
swagger:model Error
func (*Error) ContextValidate ¶
ContextValidate validates this error based on context it is used
func (*Error) MarshalBinary ¶
MarshalBinary interface implementation
func (*Error) UnmarshalBinary ¶
UnmarshalBinary interface implementation
type GetTableItem ¶ added in v0.1.1
type GetTableItem struct {
Result []GetTable
}
type IdentifyReconcileItem ¶
type IdentifyReconcileItem struct {
ClassName string `json:"className"`
InternalId string `json:"internal_id,omitempty"`
Lookup []*Lookup `json:"lookup,omitempty"`
Related []string `json:"related,omitempty"`
Settings *Settings `json:"settings,omitempty"`
SysObjectSourceInfo *SysObjectSourceInfo `json:"sys_object_source_info,omitempty"`
Values *ItemValue `json:"values"`
}
type IdentifyReconcileItemList ¶
type IdentifyReconcileItemList struct {
Items []*IdentifyReconcileItem `json:"items"`
}
type Lookup ¶
type Lookup struct {
ClassName string `json:"className"`
InternalId string `json:"internal_id,omitempty"`
SysObjectSourceInfo *SysObjectSourceInfo `json:"sys_object_source_info,omitempty"`
Values string `json:"values"`
}
type ServiceErrorResponse ¶
type ServiceErrorResponse struct {
// details
Details []string `json:"details"`
// document kind
DocumentKind string `json:"documentKind,omitempty"`
// error code
ErrorCode int32 `json:"errorCode,omitempty"`
// message
Message string `json:"message,omitempty"`
// message Id
MessageID string `json:"messageId,omitempty"`
// server error Id
ServerErrorID string `json:"serverErrorId,omitempty"`
// stack trace
StackTrace []string `json:"stackTrace"`
// status code
StatusCode int32 `json:"statusCode,omitempty"`
}
ServiceErrorResponse service error response
swagger:model ServiceErrorResponse
func (*ServiceErrorResponse) ContextValidate ¶
ContextValidate validates this service error response based on context it is used
func (*ServiceErrorResponse) MarshalBinary ¶
func (m *ServiceErrorResponse) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ServiceErrorResponse) UnmarshalBinary ¶
func (m *ServiceErrorResponse) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type Settings ¶
type Settings struct {
SkipReclassificationRestrictionRules bool `json:"skipReclassificationRestrictionRules,omitempty"`
UpdateWithoutDowngrade bool `json:"updateWithoutDowngrade,omitempty"`
UpdateWithoutSwitch bool `json:"updateWithoutSwitch,omitempty"`
UpdateWithoutUpgrade bool `json:"updateWithoutUpgrade,omitempty"`
}
Click to show internal directories.
Click to hide internal directories.