Documentation ¶
Index ¶
- Variables
- func DataCollectorServerHandle(ctx context.Context, o DataCollectorServer, opNum int, r ndr.Reader) (dcerpc.Operation, error)
- func NewDataCollectorServerHandle(o DataCollectorServer) dcerpc.ServerHandle
- func RegisterDataCollectorServer(conn dcerpc.Conn, o DataCollectorServer, opts ...dcerpc.Option)
- type DataCollectorClient
- type DataCollectorServer
- type GetDataCollectorSetRequest
- type GetDataCollectorSetResponse
- type GetDataCollectorTypeRequest
- type GetDataCollectorTypeResponse
- type GetFileNameFormatPatternRequest
- type GetFileNameFormatPatternResponse
- type GetFileNameFormatRequest
- type GetFileNameFormatResponse
- type GetFileNameRequest
- type GetFileNameResponse
- type GetIndexRequest
- type GetIndexResponse
- type GetLatestOutputLocationRequest
- type GetLatestOutputLocationResponse
- type GetLogAppendRequest
- type GetLogAppendResponse
- type GetLogCircularRequest
- type GetLogCircularResponse
- type GetLogOverwriteRequest
- type GetLogOverwriteResponse
- type GetNameRequest
- type GetNameResponse
- type GetOutputLocationRequest
- type GetOutputLocationResponse
- type GetXMLRequest
- type GetXMLResponse
- type SetFileNameFormatPatternRequest
- type SetFileNameFormatPatternResponse
- type SetFileNameFormatRequest
- type SetFileNameFormatResponse
- type SetFileNameRequest
- type SetFileNameResponse
- type SetLatestOutputLocationRequest
- type SetLatestOutputLocationResponse
- type SetLogAppendRequest
- type SetLogAppendResponse
- type SetLogCircularRequest
- type SetLogCircularResponse
- type SetLogOverwriteRequest
- type SetLogOverwriteResponse
- type SetNameRequest
- type SetNameResponse
- type SetXMLRequest
- type SetXMLResponse
Constants ¶
This section is empty.
Variables ¶
var ( // IDataCollector interface identifier 038374ff-098b-11d8-9414-505054503030 DataCollectorIID = &dcom.IID{Data1: 0x038374ff, Data2: 0x098b, Data3: 0x11d8, Data4: []byte{0x94, 0x14, 0x50, 0x50, 0x54, 0x50, 0x30, 0x30}} // Syntax UUID DataCollectorSyntaxUUID = &uuid.UUID{TimeLow: 0x38374ff, TimeMid: 0x98b, TimeHiAndVersion: 0x11d8, ClockSeqHiAndReserved: 0x94, ClockSeqLow: 0x14, Node: [6]uint8{0x50, 0x50, 0x54, 0x50, 0x30, 0x30}} // Syntax ID DataCollectorSyntaxV0_0 = &dcerpc.SyntaxID{IfUUID: DataCollectorSyntaxUUID, IfVersionMajor: 0, IfVersionMinor: 0} )
var (
// import guard
GoPackage = "dcom/pla"
)
Functions ¶
func NewDataCollectorServerHandle ¶
func NewDataCollectorServerHandle(o DataCollectorServer) dcerpc.ServerHandle
func RegisterDataCollectorServer ¶
func RegisterDataCollectorServer(conn dcerpc.Conn, o DataCollectorServer, opts ...dcerpc.Option)
Types ¶
type DataCollectorClient ¶
type DataCollectorClient interface { // IDispatch retrieval method. Dispatch() idispatch.DispatchClient // The DataCollectorSet (Get) method retrieves the DataCollectorSet property. // // Return Values: This method MUST return an HRESULT with the severity bit clear on // success as specified in [MS-ERREF]; otherwise, it MUST return one of the errors as // defined in 2.2.1 or one of the errors as defined in [MS-ERREF] section 2.1. GetDataCollectorSet(context.Context, *GetDataCollectorSetRequest, ...dcerpc.CallOption) (*GetDataCollectorSetResponse, error) // The DataCollectorType enumeration defines the data collector types. // // The DataCollectorType (Get) method retrieves the DataCollectorType property. // // Return Values: This method MUST return an HRESULT with the severity bit clear on // success as specified in [MS-ERREF]; otherwise, it MUST return one of the errors as // defined in 2.2.1 or one of the errors as defined in [MS-ERREF] section 2.1. GetDataCollectorType(context.Context, *GetDataCollectorTypeRequest, ...dcerpc.CallOption) (*GetDataCollectorTypeResponse, error) // FileName operation. GetFileName(context.Context, *GetFileNameRequest, ...dcerpc.CallOption) (*GetFileNameResponse, error) // FileName operation. SetFileName(context.Context, *SetFileNameRequest, ...dcerpc.CallOption) (*SetFileNameResponse, error) // FileNameFormat operation. GetFileNameFormat(context.Context, *GetFileNameFormatRequest, ...dcerpc.CallOption) (*GetFileNameFormatResponse, error) // FileNameFormat operation. SetFileNameFormat(context.Context, *SetFileNameFormatRequest, ...dcerpc.CallOption) (*SetFileNameFormatResponse, error) // FileNameFormatPattern operation. GetFileNameFormatPattern(context.Context, *GetFileNameFormatPatternRequest, ...dcerpc.CallOption) (*GetFileNameFormatPatternResponse, error) // FileNameFormatPattern operation. SetFileNameFormatPattern(context.Context, *SetFileNameFormatPatternRequest, ...dcerpc.CallOption) (*SetFileNameFormatPatternResponse, error) // LatestOutputLocation operation. GetLatestOutputLocation(context.Context, *GetLatestOutputLocationRequest, ...dcerpc.CallOption) (*GetLatestOutputLocationResponse, error) // LatestOutputLocation operation. SetLatestOutputLocation(context.Context, *SetLatestOutputLocationRequest, ...dcerpc.CallOption) (*SetLatestOutputLocationResponse, error) // LogAppend operation. GetLogAppend(context.Context, *GetLogAppendRequest, ...dcerpc.CallOption) (*GetLogAppendResponse, error) // LogAppend operation. SetLogAppend(context.Context, *SetLogAppendRequest, ...dcerpc.CallOption) (*SetLogAppendResponse, error) // LogCircular operation. GetLogCircular(context.Context, *GetLogCircularRequest, ...dcerpc.CallOption) (*GetLogCircularResponse, error) // LogCircular operation. SetLogCircular(context.Context, *SetLogCircularRequest, ...dcerpc.CallOption) (*SetLogCircularResponse, error) // LogOverwrite operation. GetLogOverwrite(context.Context, *GetLogOverwriteRequest, ...dcerpc.CallOption) (*GetLogOverwriteResponse, error) // LogOverwrite operation. SetLogOverwrite(context.Context, *SetLogOverwriteRequest, ...dcerpc.CallOption) (*SetLogOverwriteResponse, error) // Name operation. GetName(context.Context, *GetNameRequest, ...dcerpc.CallOption) (*GetNameResponse, error) // Name operation. SetName(context.Context, *SetNameRequest, ...dcerpc.CallOption) (*SetNameResponse, error) // OutputLocation operation. GetOutputLocation(context.Context, *GetOutputLocationRequest, ...dcerpc.CallOption) (*GetOutputLocationResponse, error) // The Index (Get) method retrieves the Index property. // // Return Values: This method MUST return an HRESULT with the severity bit clear on // success as specified in [MS-ERREF]; otherwise, it MUST return one of the errors as // defined in 2.2.1 or one of the errors as defined in [MS-ERREF] section 2.1. GetIndex(context.Context, *GetIndexRequest, ...dcerpc.CallOption) (*GetIndexResponse, error) // Xml operation. GetXML(context.Context, *GetXMLRequest, ...dcerpc.CallOption) (*GetXMLResponse, error) // SetXml operation. SetXML(context.Context, *SetXMLRequest, ...dcerpc.CallOption) (*SetXMLResponse, error) // AlterContext alters the client context. AlterContext(context.Context, ...dcerpc.Option) error // IPID sets the object interface identifier. IPID(context.Context, *dcom.IPID) DataCollectorClient }
IDataCollector interface.
func NewDataCollectorClient ¶
type DataCollectorServer ¶
type DataCollectorServer interface { // IDispatch base class. idispatch.DispatchServer // The DataCollectorSet (Get) method retrieves the DataCollectorSet property. // // Return Values: This method MUST return an HRESULT with the severity bit clear on // success as specified in [MS-ERREF]; otherwise, it MUST return one of the errors as // defined in 2.2.1 or one of the errors as defined in [MS-ERREF] section 2.1. GetDataCollectorSet(context.Context, *GetDataCollectorSetRequest) (*GetDataCollectorSetResponse, error) // The DataCollectorType enumeration defines the data collector types. // // The DataCollectorType (Get) method retrieves the DataCollectorType property. // // Return Values: This method MUST return an HRESULT with the severity bit clear on // success as specified in [MS-ERREF]; otherwise, it MUST return one of the errors as // defined in 2.2.1 or one of the errors as defined in [MS-ERREF] section 2.1. GetDataCollectorType(context.Context, *GetDataCollectorTypeRequest) (*GetDataCollectorTypeResponse, error) // FileName operation. GetFileName(context.Context, *GetFileNameRequest) (*GetFileNameResponse, error) // FileName operation. SetFileName(context.Context, *SetFileNameRequest) (*SetFileNameResponse, error) // FileNameFormat operation. GetFileNameFormat(context.Context, *GetFileNameFormatRequest) (*GetFileNameFormatResponse, error) // FileNameFormat operation. SetFileNameFormat(context.Context, *SetFileNameFormatRequest) (*SetFileNameFormatResponse, error) // FileNameFormatPattern operation. GetFileNameFormatPattern(context.Context, *GetFileNameFormatPatternRequest) (*GetFileNameFormatPatternResponse, error) // FileNameFormatPattern operation. SetFileNameFormatPattern(context.Context, *SetFileNameFormatPatternRequest) (*SetFileNameFormatPatternResponse, error) // LatestOutputLocation operation. GetLatestOutputLocation(context.Context, *GetLatestOutputLocationRequest) (*GetLatestOutputLocationResponse, error) // LatestOutputLocation operation. SetLatestOutputLocation(context.Context, *SetLatestOutputLocationRequest) (*SetLatestOutputLocationResponse, error) // LogAppend operation. GetLogAppend(context.Context, *GetLogAppendRequest) (*GetLogAppendResponse, error) // LogAppend operation. SetLogAppend(context.Context, *SetLogAppendRequest) (*SetLogAppendResponse, error) // LogCircular operation. GetLogCircular(context.Context, *GetLogCircularRequest) (*GetLogCircularResponse, error) // LogCircular operation. SetLogCircular(context.Context, *SetLogCircularRequest) (*SetLogCircularResponse, error) // LogOverwrite operation. GetLogOverwrite(context.Context, *GetLogOverwriteRequest) (*GetLogOverwriteResponse, error) // LogOverwrite operation. SetLogOverwrite(context.Context, *SetLogOverwriteRequest) (*SetLogOverwriteResponse, error) // Name operation. GetName(context.Context, *GetNameRequest) (*GetNameResponse, error) // Name operation. SetName(context.Context, *SetNameRequest) (*SetNameResponse, error) // OutputLocation operation. GetOutputLocation(context.Context, *GetOutputLocationRequest) (*GetOutputLocationResponse, error) // The Index (Get) method retrieves the Index property. // // Return Values: This method MUST return an HRESULT with the severity bit clear on // success as specified in [MS-ERREF]; otherwise, it MUST return one of the errors as // defined in 2.2.1 or one of the errors as defined in [MS-ERREF] section 2.1. GetIndex(context.Context, *GetIndexRequest) (*GetIndexResponse, error) // Xml operation. GetXML(context.Context, *GetXMLRequest) (*GetXMLResponse, error) // SetXml operation. SetXML(context.Context, *SetXMLRequest) (*SetXMLResponse, error) }
IDataCollector server interface.
type GetDataCollectorSetRequest ¶
type GetDataCollectorSetRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetDataCollectorSetRequest structure represents the DataCollectorSet operation request
func (*GetDataCollectorSetRequest) MarshalNDR ¶
func (*GetDataCollectorSetRequest) UnmarshalNDR ¶
type GetDataCollectorSetResponse ¶
type GetDataCollectorSetResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` // group: Receives a pointer to the data collector set to which this data collector // belongs. Group *pla.DataCollectorSet `idl:"name:group" json:"group"` // Return: The DataCollectorSet return value. Return int32 `idl:"name:Return" json:"return"` }
GetDataCollectorSetResponse structure represents the DataCollectorSet operation response
func (*GetDataCollectorSetResponse) MarshalNDR ¶
func (*GetDataCollectorSetResponse) UnmarshalNDR ¶
type GetDataCollectorTypeRequest ¶
type GetDataCollectorTypeRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetDataCollectorTypeRequest structure represents the DataCollectorType operation request
func (*GetDataCollectorTypeRequest) MarshalNDR ¶
func (*GetDataCollectorTypeRequest) UnmarshalNDR ¶
type GetDataCollectorTypeResponse ¶
type GetDataCollectorTypeResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` // type: Receives the type of this data collector. For possible types, see the DataCollectorType // enumeration (section 2.2.2.5). Type pla.DataCollectorType `idl:"name:type" json:"type"` // Return: The DataCollectorType return value. Return int32 `idl:"name:Return" json:"return"` }
GetDataCollectorTypeResponse structure represents the DataCollectorType operation response
func (*GetDataCollectorTypeResponse) MarshalNDR ¶
func (*GetDataCollectorTypeResponse) UnmarshalNDR ¶
type GetFileNameFormatPatternRequest ¶
type GetFileNameFormatPatternRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetFileNameFormatPatternRequest structure represents the FileNameFormatPattern operation request
func (*GetFileNameFormatPatternRequest) MarshalNDR ¶
func (*GetFileNameFormatPatternRequest) UnmarshalNDR ¶
type GetFileNameFormatPatternResponse ¶
type GetFileNameFormatPatternResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` Pattern *oaut.String `idl:"name:pattern" json:"pattern"` // Return: The FileNameFormatPattern return value. Return int32 `idl:"name:Return" json:"return"` }
GetFileNameFormatPatternResponse structure represents the FileNameFormatPattern operation response
func (*GetFileNameFormatPatternResponse) MarshalNDR ¶
func (*GetFileNameFormatPatternResponse) UnmarshalNDR ¶
type GetFileNameFormatRequest ¶
type GetFileNameFormatRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetFileNameFormatRequest structure represents the FileNameFormat operation request
func (*GetFileNameFormatRequest) MarshalNDR ¶
func (*GetFileNameFormatRequest) UnmarshalNDR ¶
type GetFileNameFormatResponse ¶
type GetFileNameFormatResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` Format pla.AutoPathFormat `idl:"name:format" json:"format"` // Return: The FileNameFormat return value. Return int32 `idl:"name:Return" json:"return"` }
GetFileNameFormatResponse structure represents the FileNameFormat operation response
func (*GetFileNameFormatResponse) MarshalNDR ¶
func (*GetFileNameFormatResponse) UnmarshalNDR ¶
type GetFileNameRequest ¶
type GetFileNameRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetFileNameRequest structure represents the FileName operation request
func (*GetFileNameRequest) MarshalNDR ¶
func (*GetFileNameRequest) UnmarshalNDR ¶
type GetFileNameResponse ¶
type GetFileNameResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` Name *oaut.String `idl:"name:name" json:"name"` // Return: The FileName return value. Return int32 `idl:"name:Return" json:"return"` }
GetFileNameResponse structure represents the FileName operation response
func (*GetFileNameResponse) MarshalNDR ¶
func (*GetFileNameResponse) UnmarshalNDR ¶
type GetIndexRequest ¶
type GetIndexRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetIndexRequest structure represents the Index operation request
func (*GetIndexRequest) MarshalNDR ¶
func (*GetIndexRequest) UnmarshalNDR ¶
type GetIndexResponse ¶
type GetIndexResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` // index: Receives the zero-based index of the data collector within the data collector // set. Index int32 `idl:"name:index" json:"index"` // Return: The Index return value. Return int32 `idl:"name:Return" json:"return"` }
GetIndexResponse structure represents the Index operation response
func (*GetIndexResponse) MarshalNDR ¶
func (*GetIndexResponse) UnmarshalNDR ¶
type GetLatestOutputLocationRequest ¶
type GetLatestOutputLocationRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetLatestOutputLocationRequest structure represents the LatestOutputLocation operation request
func (*GetLatestOutputLocationRequest) MarshalNDR ¶
func (*GetLatestOutputLocationRequest) UnmarshalNDR ¶
type GetLatestOutputLocationResponse ¶
type GetLatestOutputLocationResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` Path *oaut.String `idl:"name:path" json:"path"` // Return: The LatestOutputLocation return value. Return int32 `idl:"name:Return" json:"return"` }
GetLatestOutputLocationResponse structure represents the LatestOutputLocation operation response
func (*GetLatestOutputLocationResponse) MarshalNDR ¶
func (*GetLatestOutputLocationResponse) UnmarshalNDR ¶
type GetLogAppendRequest ¶
type GetLogAppendRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetLogAppendRequest structure represents the LogAppend operation request
func (*GetLogAppendRequest) MarshalNDR ¶
func (*GetLogAppendRequest) UnmarshalNDR ¶
type GetLogAppendResponse ¶
type GetLogAppendResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` Append int16 `idl:"name:append" json:"append"` // Return: The LogAppend return value. Return int32 `idl:"name:Return" json:"return"` }
GetLogAppendResponse structure represents the LogAppend operation response
func (*GetLogAppendResponse) MarshalNDR ¶
func (*GetLogAppendResponse) UnmarshalNDR ¶
type GetLogCircularRequest ¶
type GetLogCircularRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetLogCircularRequest structure represents the LogCircular operation request
func (*GetLogCircularRequest) MarshalNDR ¶
func (*GetLogCircularRequest) UnmarshalNDR ¶
type GetLogCircularResponse ¶
type GetLogCircularResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` Circular int16 `idl:"name:circular" json:"circular"` // Return: The LogCircular return value. Return int32 `idl:"name:Return" json:"return"` }
GetLogCircularResponse structure represents the LogCircular operation response
func (*GetLogCircularResponse) MarshalNDR ¶
func (*GetLogCircularResponse) UnmarshalNDR ¶
type GetLogOverwriteRequest ¶
type GetLogOverwriteRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetLogOverwriteRequest structure represents the LogOverwrite operation request
func (*GetLogOverwriteRequest) MarshalNDR ¶
func (*GetLogOverwriteRequest) UnmarshalNDR ¶
type GetLogOverwriteResponse ¶
type GetLogOverwriteResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` Overwrite int16 `idl:"name:overwrite" json:"overwrite"` // Return: The LogOverwrite return value. Return int32 `idl:"name:Return" json:"return"` }
GetLogOverwriteResponse structure represents the LogOverwrite operation response
func (*GetLogOverwriteResponse) MarshalNDR ¶
func (*GetLogOverwriteResponse) UnmarshalNDR ¶
type GetNameRequest ¶
type GetNameRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetNameRequest structure represents the Name operation request
func (*GetNameRequest) MarshalNDR ¶
func (*GetNameRequest) UnmarshalNDR ¶
type GetNameResponse ¶
type GetNameResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` Name *oaut.String `idl:"name:name" json:"name"` // Return: The Name return value. Return int32 `idl:"name:Return" json:"return"` }
GetNameResponse structure represents the Name operation response
func (*GetNameResponse) MarshalNDR ¶
func (*GetNameResponse) UnmarshalNDR ¶
type GetOutputLocationRequest ¶
type GetOutputLocationRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetOutputLocationRequest structure represents the OutputLocation operation request
func (*GetOutputLocationRequest) MarshalNDR ¶
func (*GetOutputLocationRequest) UnmarshalNDR ¶
type GetOutputLocationResponse ¶
type GetOutputLocationResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` Path *oaut.String `idl:"name:path" json:"path"` // Return: The OutputLocation return value. Return int32 `idl:"name:Return" json:"return"` }
GetOutputLocationResponse structure represents the OutputLocation operation response
func (*GetOutputLocationResponse) MarshalNDR ¶
func (*GetOutputLocationResponse) UnmarshalNDR ¶
type GetXMLRequest ¶
type GetXMLRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` }
GetXMLRequest structure represents the Xml operation request
func (*GetXMLRequest) MarshalNDR ¶
func (*GetXMLRequest) UnmarshalNDR ¶
type GetXMLResponse ¶
type GetXMLResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` XML *oaut.String `idl:"name:Xml" json:"xml"` // Return: The Xml return value. Return int32 `idl:"name:Return" json:"return"` }
GetXMLResponse structure represents the Xml operation response
func (*GetXMLResponse) MarshalNDR ¶
func (*GetXMLResponse) UnmarshalNDR ¶
type SetFileNameFormatPatternRequest ¶
type SetFileNameFormatPatternRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` Pattern *oaut.String `idl:"name:pattern" json:"pattern"` }
SetFileNameFormatPatternRequest structure represents the FileNameFormatPattern operation request
func (*SetFileNameFormatPatternRequest) MarshalNDR ¶
func (*SetFileNameFormatPatternRequest) UnmarshalNDR ¶
type SetFileNameFormatPatternResponse ¶
type SetFileNameFormatPatternResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` // Return: The FileNameFormatPattern return value. Return int32 `idl:"name:Return" json:"return"` }
SetFileNameFormatPatternResponse structure represents the FileNameFormatPattern operation response
func (*SetFileNameFormatPatternResponse) MarshalNDR ¶
func (*SetFileNameFormatPatternResponse) UnmarshalNDR ¶
type SetFileNameFormatRequest ¶
type SetFileNameFormatRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` Format pla.AutoPathFormat `idl:"name:format" json:"format"` }
SetFileNameFormatRequest structure represents the FileNameFormat operation request
func (*SetFileNameFormatRequest) MarshalNDR ¶
func (*SetFileNameFormatRequest) UnmarshalNDR ¶
type SetFileNameFormatResponse ¶
type SetFileNameFormatResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` // Return: The FileNameFormat return value. Return int32 `idl:"name:Return" json:"return"` }
SetFileNameFormatResponse structure represents the FileNameFormat operation response
func (*SetFileNameFormatResponse) MarshalNDR ¶
func (*SetFileNameFormatResponse) UnmarshalNDR ¶
type SetFileNameRequest ¶
type SetFileNameRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` Name *oaut.String `idl:"name:name" json:"name"` }
SetFileNameRequest structure represents the FileName operation request
func (*SetFileNameRequest) MarshalNDR ¶
func (*SetFileNameRequest) UnmarshalNDR ¶
type SetFileNameResponse ¶
type SetFileNameResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` // Return: The FileName return value. Return int32 `idl:"name:Return" json:"return"` }
SetFileNameResponse structure represents the FileName operation response
func (*SetFileNameResponse) MarshalNDR ¶
func (*SetFileNameResponse) UnmarshalNDR ¶
type SetLatestOutputLocationRequest ¶
type SetLatestOutputLocationRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` Path *oaut.String `idl:"name:path" json:"path"` }
SetLatestOutputLocationRequest structure represents the LatestOutputLocation operation request
func (*SetLatestOutputLocationRequest) MarshalNDR ¶
func (*SetLatestOutputLocationRequest) UnmarshalNDR ¶
type SetLatestOutputLocationResponse ¶
type SetLatestOutputLocationResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` // Return: The LatestOutputLocation return value. Return int32 `idl:"name:Return" json:"return"` }
SetLatestOutputLocationResponse structure represents the LatestOutputLocation operation response
func (*SetLatestOutputLocationResponse) MarshalNDR ¶
func (*SetLatestOutputLocationResponse) UnmarshalNDR ¶
type SetLogAppendRequest ¶
type SetLogAppendRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` Append int16 `idl:"name:append" json:"append"` }
SetLogAppendRequest structure represents the LogAppend operation request
func (*SetLogAppendRequest) MarshalNDR ¶
func (*SetLogAppendRequest) UnmarshalNDR ¶
type SetLogAppendResponse ¶
type SetLogAppendResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` // Return: The LogAppend return value. Return int32 `idl:"name:Return" json:"return"` }
SetLogAppendResponse structure represents the LogAppend operation response
func (*SetLogAppendResponse) MarshalNDR ¶
func (*SetLogAppendResponse) UnmarshalNDR ¶
type SetLogCircularRequest ¶
type SetLogCircularRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` Circular int16 `idl:"name:circular" json:"circular"` }
SetLogCircularRequest structure represents the LogCircular operation request
func (*SetLogCircularRequest) MarshalNDR ¶
func (*SetLogCircularRequest) UnmarshalNDR ¶
type SetLogCircularResponse ¶
type SetLogCircularResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` // Return: The LogCircular return value. Return int32 `idl:"name:Return" json:"return"` }
SetLogCircularResponse structure represents the LogCircular operation response
func (*SetLogCircularResponse) MarshalNDR ¶
func (*SetLogCircularResponse) UnmarshalNDR ¶
type SetLogOverwriteRequest ¶
type SetLogOverwriteRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` Overwrite int16 `idl:"name:overwrite" json:"overwrite"` }
SetLogOverwriteRequest structure represents the LogOverwrite operation request
func (*SetLogOverwriteRequest) MarshalNDR ¶
func (*SetLogOverwriteRequest) UnmarshalNDR ¶
type SetLogOverwriteResponse ¶
type SetLogOverwriteResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` // Return: The LogOverwrite return value. Return int32 `idl:"name:Return" json:"return"` }
SetLogOverwriteResponse structure represents the LogOverwrite operation response
func (*SetLogOverwriteResponse) MarshalNDR ¶
func (*SetLogOverwriteResponse) UnmarshalNDR ¶
type SetNameRequest ¶
type SetNameRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` Name *oaut.String `idl:"name:name" json:"name"` }
SetNameRequest structure represents the Name operation request
func (*SetNameRequest) MarshalNDR ¶
func (*SetNameRequest) UnmarshalNDR ¶
type SetNameResponse ¶
type SetNameResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` // Return: The Name return value. Return int32 `idl:"name:Return" json:"return"` }
SetNameResponse structure represents the Name operation response
func (*SetNameResponse) MarshalNDR ¶
func (*SetNameResponse) UnmarshalNDR ¶
type SetXMLRequest ¶
type SetXMLRequest struct { // This: ORPCTHIS structure that is used to send ORPC extension data to the server. This *dcom.ORPCThis `idl:"name:This" json:"this"` XML *oaut.String `idl:"name:Xml" json:"xml"` }
SetXMLRequest structure represents the SetXml operation request
func (*SetXMLRequest) MarshalNDR ¶
func (*SetXMLRequest) UnmarshalNDR ¶
type SetXMLResponse ¶
type SetXMLResponse struct { // That: ORPCTHAT structure that is used to return ORPC extension data to the client. That *dcom.ORPCThat `idl:"name:That" json:"that"` Validation *pla.ValueMap `idl:"name:Validation" json:"validation"` // Return: The SetXml return value. Return int32 `idl:"name:Return" json:"return"` }
SetXMLResponse structure represents the SetXml operation response