Documentation
¶
Index ¶
- Constants
- type DTOExtendConfigDTO
- type DTOServiceConfigDTO
- type DTOServiceConfigurationDTO
- type DTOServiceConfigurationUpdateRequest
- type DTOServicesConfigurationResponse
- type ModelsDataRetrievalResponse
- type ModelsDeletionData
- type ModelsDeletionStatus
- type ModelsListDeletionDataResponse
- type ModelsListPersonalDataResponse
- type ModelsPagination
- type ModelsPersonalData
- type ModelsRequestDeleteResponse
- type ModelsUserDataURL
- type ModelsUserPersonalData
- type ModelsUserPersonalDataResponse
- type ResponseError
Constants ¶
const ( // DTOServiceConfigurationDTOTypeEXTEND captures enum value "EXTEND" DTOServiceConfigurationDTOTypeEXTEND string = "EXTEND" // DTOServiceConfigurationDTOTypeSERVICE captures enum value "SERVICE" DTOServiceConfigurationDTOTypeSERVICE string = "SERVICE" )
const ( // DTOServiceConfigDTOProtocolGRPC captures enum value "GRPC" DTOServiceConfigDTOProtocolGRPC string = "GRPC" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DTOExtendConfigDTO ¶ added in v0.55.0
type DTOExtendConfigDTO struct {
// extend app name
// Required: true
AppName *string `json:"appName"`
// extend app namespace
// Required: true
Namespace *string `json:"namespace"`
}
DTOExtendConfigDTO Dto extend config DTO
swagger:model Dto extend config DTO.
func (*DTOExtendConfigDTO) MarshalBinary ¶ added in v0.55.0
func (m *DTOExtendConfigDTO) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*DTOExtendConfigDTO) UnmarshalBinary ¶ added in v0.55.0
func (m *DTOExtendConfigDTO) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type DTOServiceConfigDTO ¶ added in v0.55.0
type DTOServiceConfigDTO struct {
// protocol type
// Enum: ['GRPC']
// Required: true
Protocol *string `json:"protocol"`
// url of the service with port number
// Required: true
URL *string `json:"url"`
}
DTOServiceConfigDTO Dto service config DTO
swagger:model Dto service config DTO.
func (*DTOServiceConfigDTO) MarshalBinary ¶ added in v0.55.0
func (m *DTOServiceConfigDTO) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*DTOServiceConfigDTO) UnmarshalBinary ¶ added in v0.55.0
func (m *DTOServiceConfigDTO) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type DTOServiceConfigurationDTO ¶ added in v0.55.0
type DTOServiceConfigurationDTO struct {
// extend configuration detail, required when "type" is "EXTEND"
ExtendConfig *DTOExtendConfigDTO `json:"extendConfig,omitempty"`
// service id
// Required: true
ID *string `json:"id"`
// service configuration detail, required when "type" is "SERVICE"
ServiceConfig *DTOServiceConfigDTO `json:"serviceConfig,omitempty"`
// service type
// Enum: ['EXTEND', 'SERVICE']
// Required: true
Type *string `json:"type"`
}
DTOServiceConfigurationDTO Dto service configuration DTO
swagger:model Dto service configuration DTO.
func (*DTOServiceConfigurationDTO) MarshalBinary ¶ added in v0.55.0
func (m *DTOServiceConfigurationDTO) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*DTOServiceConfigurationDTO) UnmarshalBinary ¶ added in v0.55.0
func (m *DTOServiceConfigurationDTO) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type DTOServiceConfigurationUpdateRequest ¶ added in v0.55.0
type DTOServiceConfigurationUpdateRequest struct {
// list of services
// Required: true
Services []*DTOServiceConfigurationDTO `json:"services"`
}
DTOServiceConfigurationUpdateRequest Dto service configuration update request
swagger:model Dto service configuration update request.
func (*DTOServiceConfigurationUpdateRequest) MarshalBinary ¶ added in v0.55.0
func (m *DTOServiceConfigurationUpdateRequest) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*DTOServiceConfigurationUpdateRequest) UnmarshalBinary ¶ added in v0.55.0
func (m *DTOServiceConfigurationUpdateRequest) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type DTOServicesConfigurationResponse ¶ added in v0.55.0
type DTOServicesConfigurationResponse struct {
// list of services
// Required: true
Services []*DTOServiceConfigurationDTO `json:"services"`
}
DTOServicesConfigurationResponse Dto services configuration response
swagger:model Dto services configuration response.
func (*DTOServicesConfigurationResponse) MarshalBinary ¶ added in v0.55.0
func (m *DTOServicesConfigurationResponse) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*DTOServicesConfigurationResponse) UnmarshalBinary ¶ added in v0.55.0
func (m *DTOServicesConfigurationResponse) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ModelsDataRetrievalResponse ¶
type ModelsDataRetrievalResponse struct {
// namespace
// Required: true
Namespace *string `json:"Namespace"`
// requestdate
// Required: true
// Format: date-time
RequestDate strfmt.DateTime `json:"RequestDate"`
// userid
// Required: true
UserID *string `json:"UserID"`
}
ModelsDataRetrievalResponse Models data retrieval response
swagger:model Models data retrieval response.
func (*ModelsDataRetrievalResponse) MarshalBinary ¶
func (m *ModelsDataRetrievalResponse) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsDataRetrievalResponse) UnmarshalBinary ¶
func (m *ModelsDataRetrievalResponse) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ModelsDeletionData ¶
type ModelsDeletionData struct {
// displayname
// Required: true
DisplayName *string `json:"DisplayName"`
// requestdate
// Required: true
// Format: date-time
RequestDate strfmt.DateTime `json:"RequestDate"`
// status
// Required: true
Status *string `json:"Status"`
// userid
// Required: true
UserID *string `json:"UserID"`
}
ModelsDeletionData Models deletion data
swagger:model Models deletion data.
func (*ModelsDeletionData) MarshalBinary ¶
func (m *ModelsDeletionData) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsDeletionData) UnmarshalBinary ¶
func (m *ModelsDeletionData) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ModelsDeletionStatus ¶
type ModelsDeletionStatus struct {
// deletiondate
// Required: true
DeletionDate *string `json:"DeletionDate"`
// deletionstatus
// Required: true
DeletionStatus *bool `json:"DeletionStatus"`
// displayname
// Required: true
DisplayName *string `json:"DisplayName"`
// executiondate
// Format: date-time
ExecutionDate *strfmt.DateTime `json:"ExecutionDate,omitempty"`
// status
// Required: true
Status *string `json:"Status"`
// userid
// Required: true
UserID *string `json:"UserID"`
}
ModelsDeletionStatus Models deletion status
swagger:model Models deletion status.
func (*ModelsDeletionStatus) MarshalBinary ¶
func (m *ModelsDeletionStatus) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsDeletionStatus) UnmarshalBinary ¶
func (m *ModelsDeletionStatus) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ModelsListDeletionDataResponse ¶
type ModelsListDeletionDataResponse struct {
// data
// Required: true
Data []*ModelsDeletionData `json:"Data"`
// paging
// Required: true
Paging *ModelsPagination `json:"Paging"`
}
ModelsListDeletionDataResponse Models list deletion data response
swagger:model Models list deletion data response.
func (*ModelsListDeletionDataResponse) MarshalBinary ¶
func (m *ModelsListDeletionDataResponse) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsListDeletionDataResponse) UnmarshalBinary ¶
func (m *ModelsListDeletionDataResponse) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ModelsListPersonalDataResponse ¶
type ModelsListPersonalDataResponse struct {
// data
// Required: true
Data []*ModelsPersonalData `json:"Data"`
// paging
// Required: true
Paging *ModelsPagination `json:"Paging"`
}
ModelsListPersonalDataResponse Models list personal data response
swagger:model Models list personal data response.
func (*ModelsListPersonalDataResponse) MarshalBinary ¶
func (m *ModelsListPersonalDataResponse) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsListPersonalDataResponse) UnmarshalBinary ¶
func (m *ModelsListPersonalDataResponse) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ModelsPagination ¶
type ModelsPagination struct {
// first
// Required: true
First *string `json:"First"`
// last
// Required: true
Last *string `json:"Last"`
// next
// Required: true
Next *string `json:"Next"`
// previous
// Required: true
Previous *string `json:"Previous"`
}
ModelsPagination Models pagination
swagger:model Models pagination.
func (*ModelsPagination) MarshalBinary ¶
func (m *ModelsPagination) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsPagination) UnmarshalBinary ¶
func (m *ModelsPagination) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ModelsPersonalData ¶
type ModelsPersonalData struct {
// dataexpirationdate
// Required: true
// Format: date-time
DataExpirationDate strfmt.DateTime `json:"DataExpirationDate"`
// displayname
// Required: true
DisplayName *string `json:"DisplayName"`
// requestdate
// Required: true
// Format: date-time
RequestDate strfmt.DateTime `json:"RequestDate"`
// serviceerrors
// Required: true
ServiceErrors map[string]string `json:"ServiceErrors"`
// servicestatuses
// Required: true
ServiceStatuses map[string]string `json:"ServiceStatuses"`
// status
// Required: true
Status *string `json:"Status"`
// userid
// Required: true
UserID *string `json:"UserID"`
}
ModelsPersonalData Models personal data
swagger:model Models personal data.
func (*ModelsPersonalData) MarshalBinary ¶
func (m *ModelsPersonalData) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsPersonalData) UnmarshalBinary ¶
func (m *ModelsPersonalData) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ModelsRequestDeleteResponse ¶
type ModelsRequestDeleteResponse struct {
// namespace
// Required: true
Namespace *string `json:"Namespace"`
// userid
// Required: true
UserID *string `json:"UserID"`
}
ModelsRequestDeleteResponse Models request delete response
swagger:model Models request delete response.
func (*ModelsRequestDeleteResponse) MarshalBinary ¶
func (m *ModelsRequestDeleteResponse) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsRequestDeleteResponse) UnmarshalBinary ¶
func (m *ModelsRequestDeleteResponse) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ModelsUserDataURL ¶
type ModelsUserDataURL struct {
// url
// Required: true
URL *string `json:"URL"`
}
ModelsUserDataURL Models user data URL
swagger:model Models user data URL.
func (*ModelsUserDataURL) MarshalBinary ¶
func (m *ModelsUserDataURL) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsUserDataURL) UnmarshalBinary ¶
func (m *ModelsUserDataURL) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ModelsUserPersonalData ¶
type ModelsUserPersonalData struct {
// dataexpirationdate
// Required: true
// Format: date-time
DataExpirationDate strfmt.DateTime `json:"DataExpirationDate"`
// requestdate
// Required: true
// Format: date-time
RequestDate strfmt.DateTime `json:"RequestDate"`
// status
// Required: true
Status *string `json:"Status"`
}
ModelsUserPersonalData Models user personal data
swagger:model Models user personal data.
func (*ModelsUserPersonalData) MarshalBinary ¶
func (m *ModelsUserPersonalData) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsUserPersonalData) UnmarshalBinary ¶
func (m *ModelsUserPersonalData) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ModelsUserPersonalDataResponse ¶
type ModelsUserPersonalDataResponse struct {
// data
// Required: true
Data []*ModelsUserPersonalData `json:"Data"`
// paging
// Required: true
Paging *ModelsPagination `json:"Paging"`
}
ModelsUserPersonalDataResponse Models user personal data response
swagger:model Models user personal data response.
func (*ModelsUserPersonalDataResponse) MarshalBinary ¶
func (m *ModelsUserPersonalDataResponse) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsUserPersonalDataResponse) UnmarshalBinary ¶
func (m *ModelsUserPersonalDataResponse) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ResponseError ¶
type ResponseError struct {
// errorcode
// Required: true
// Format: int32
ErrorCode *int32 `json:"errorCode"`
// errormessage
// Required: true
ErrorMessage *string `json:"errorMessage"`
}
ResponseError Response error
swagger:model Response error.
func (*ResponseError) MarshalBinary ¶
func (m *ResponseError) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ResponseError) UnmarshalBinary ¶
func (m *ResponseError) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
Source Files
¶
- dto_extend_config_dto.go
- dto_service_config_dto.go
- dto_service_configuration_dto.go
- dto_service_configuration_update_request.go
- dto_services_configuration_response.go
- models_data_retrieval_response.go
- models_deletion_data.go
- models_deletion_status.go
- models_list_deletion_data_response.go
- models_list_personal_data_response.go
- models_pagination.go
- models_personal_data.go
- models_request_delete_response.go
- models_user_data_url.go
- models_user_personal_data.go
- models_user_personal_data_response.go
- response_error.go